I want to save a dataframe which has numeric values into a csv using df.to.csv command in pandas and avoid conversion of the values to scientific notation.
I have a dataframe which looks like this:
d = {'CookieID': [8034109298000000000, 6180638274000000000], 'Junk': [CryptIDsOptOut, CryptIDsOptOut]}
When I save it to csv using
dffound.to_csv(r'C:\Users\Output_4.csv', index=False, header=False, sep='\t')
it converts it to scientific notation like in this file.
I want to avoid this and save it as the it appears in the dataframe without any conversions. Thank you for your help.