import os
import pandas as pd
file = os.getcwd() + '\\html\\600016.csv'
data = pd.DataFrame({'a':[1, 2, 3], 'b': [4, 5, 6]}) #要保存的数据
data.to_csv(file, index=False) #数据写入,index=False表示不加索引
运行报错
原因:
file所指文件在其他地方打开,关闭即可
来源:CSDN
作者:qq_29169999
链接:https://blog.csdn.net/qq_29169999/article/details/104118863