i wrote the below code and converted into dataframe also but getting key error 1
df = (Invoice_No,Date,Lot_No,Expiry_Date,Date_of_Manufacturing,Ethicon_General_PO,Extras)
df = pd.DataFrame(df)
columns = ['INVOICE','DATE','LOT_NO', 'EXPIRY_DATE','DATE_OF_MANUFACTURING','ETHICON_GENERAL_PO','Extras']
df['Name'] = columns
df1 = pd.DataFrame(df)
Alteryx.write(df1,1)
please help to resolve this.
Thanks