在python 2.x中是否不可避免出现“编码是无效关键字”错误?

在python 2.x中是否不可避免出现“编码是无效关键字”错误?,第1张

在python 2.x中是否不可避免出现“编码是无效关键字”错误

对于Python2.7,请

io.open()
在两个位置使用。

import ioimport shutilwith io.open('/etc/passwd', encoding='latin-1', errors='ignore') as source:    with io.open('/tmp/goof', mode='w', encoding='utf-8') as target:        shutil.copyfileobj(source, target)

上面的程序在我的电脑上运行没有错误。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5654180.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存