python2 with open(path,"",) as f:

python2 with open 没有 encoding 这个参数 会报错, 可以 

import io

with io.open(path,"") as f: 这样就ok 或者是读取的时候 加上 encoding 

猜你喜欢

转载自www.cnblogs.com/guanong/p/10779682.html
今日推荐