我被要求将按标签分隔项目的txt文件转换为用逗号分隔项目的csv文件,但我不知道如何使用编解码器模块。这是我的代码:
import os
import csv
import codecs
filedir = input("enter the directory:")
os.chdir(filedir)
input_file = input("Enter the text file name:")
output_file = input("Enter the csv file name:")
with codecs.open(output_file, 'rU', encoding='utf-8') as file: