如何使用 CSV 库在 python 中打开 CSV? [复制]
Posted
技术标签:
【中文标题】如何使用 CSV 库在 python 中打开 CSV? [复制]【英文标题】:How to open CSV in python using CSV library? [duplicate] 【发布时间】:2020-11-02 16:48:46 【问题描述】:我在 python 中的这段代码有问题。它返回一个错误:
line 23, in decode
return codecs.charmap_decode(input,self.errors,decoding_table)[0]
UnicodeDecodeError: 'charmap' codec can't decode byte 0x81 in position 3310: character maps to <undefined>.
我该如何解决?
import csv
exampleFile = open('example-base.csv')
exampleReader = csv.reader(exampleFile)
exampleData = list(exampleReader)
exampleData
【问题讨论】:
【参考方案1】:试试这个
examplefile = open(file_name, encoding="utf8")
【讨论】:
以上是关于如何使用 CSV 库在 python 中打开 CSV? [复制]的主要内容,如果未能解决你的问题,请参考以下文章