import pandas as pd
csv2 = pd.read_csv("data.csv")
data2 = pd.read_csv('data2.csv')
output2 = pd.merge(csv2, data2, on = 'AccountGuid', how='inner')
print(output2)
syntax - sys:1: DtypeWarning: Columns (0,2,3,4,5,6,7,9,10,11,12,13,14,16,19,20,21,23,24,25) have mixed types.Specify dtype option on import or set low_memory=False.
Traceback (most recent call last):
File "c:\Users\LENOVO\Documents\story.py", line 6, in <module>
output2 = pd.merge(csv2, data2, on = 'AccountGuid', how='inner')
File "C:\Users\LENOVO\AppData\Local\Programs\Python\Python310\lib\site-packages\pandas\core\reshape\merge.py", line 106, in merge
op = _MergeOperation(
Please, any answer on how to fix it will be appreciated.