Python將字典保存到CSV文件中並解決中文亂碼的方法

with open('CSDN.csv', 'a+', encoding='utf-8', newline="") as f: f.write(u'中文') [f.write('{0},{1}\n'.format(key, value)) for key, value in dlc.items()] 代碼解釋    with open →打開文件    CSDN.csv → 
相關文章
相關標籤/搜索