I have a dataframe
consists of numeric and character columns.
I want to export this as csv
format and to apply double quotes only to character columns.
Is there any tips to export csv format with only character double quotes?
Below is my simple example.
Thanks.
test = pd.DataFrame({'char' : ['100', '200'], 'num' : [700, 800]})
test.to_csv('test_out.csv', sep=",", quotechar='"',index=False, quoting=csv.QUOTE_ALL)
>> actual result
"char","num"
"100","700"
"200","800"
>> result that I want...
"char","num"
"100",700
"200",800
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…