运行报错:"UnicodeDecodeError: ‘gbk’ codec can’t decode bytes in position 2-3: illegal multibyte sequence" 修改testPMI.py 中的 f = open(testfile, 'r') 修改为 f = open(testfile, 'r',encoding= 'utf-8')
运行报错:"UnicodeDecodeError: ‘gbk’ codec can’t decode bytes in position 2-3: illegal multibyte sequence"
修改testPMI.py 中的
f = open(testfile, 'r')
修改为
f = open(testfile, 'r',encoding= 'utf-8')