用 coderunner 插件运行 Python 文件
UnicodeEncodeError: 'ascii' codec can't encode characters in position 0-3: ordinal not in range(128) 报错提示这个
问题是我已经在文件最上面加了
而且 vsc 的设置里 files.encoding": "utf8", 也设置好了
这是为什么呢?
1
formulahendry 2017-02-26 17:51:35 +08:00 via Android 1
你好,我是插件作者。你 py 文件内容是啥,里面有中文?可以试试这里面的三种解决方案: https://github.com/formulahendry/vscode-code-runner/issues/25
|
2
Anhedonia OP @formulahendry 好啦好啦!!谢谢谢谢!!!!顺便一提 你的插件好棒的!
|
3
formulahendry 2017-02-26 23:01:13 +08:00 via Android
@Anhedonia 😀
|
4
kevin100702 2017-02-26 23:45:00 +08:00 via Android
Import Io
Io.set ………… 原谅我不会手机打代码 |
5
WildCat 2017-02-26 23:59:16 +08:00 via iPhone
@formulahendry 全球第一工单论坛 😂
|
6
suixn 2017-02-27 09:33:44 +08:00
···
import io sys.stdout = io.TextIOWrapper(sys.stdout.buffer,encoding='utf8') ··· |