源代码:
fo = open("***.csv","r")
报错:
解决方案:
fo = open("***.csv","r",encoding=‘UTF-8‘)
原文:https://www.cnblogs.com/legoxz/p/8511542.html