python2 with open 没有 encoding 这个参数 会报错, 可以
import io
with io.open(path,"") as f: 这样就ok 或者是读取的时候 加上 encoding
python2 with open 没有 encoding 这个参数 会报错, 可以
import io
with io.open(path,"") as f: 这样就ok 或者是读取的时候 加上 encoding
转载于:https://www.cnblogs.com/guanong/p/10779682.html