发布时间:2019-09-25 08:24:31编辑:auto阅读(2393)
缘起:
[root@CentOS7 code]# python multi_thread_mfw.py
File "multi_thread_mfw.py", line 138
SyntaxError: Non-ASCII character '\xe5' in file multi_thread_mfw.py on line 138, but no encoding declared; see http://www.python.org/peps/pep-0263.html for details
写完python代码运行时,报类似SyntaxError: Non-ASCII character ‘\xe5’ in file *.py,
基本可以断定,python文件开头未设置coding=utf-8。
#!/usr/bin/python
# coding=utf-8
# TODO: anything
或者:
#!/usr/bin/python
# -*- coding:utf-8 -*-
# TODO: anything
vim中对python语法高亮,正则匹配规则:
\%^.*\n.∗\?#.*coding[:=]\s*[0-9A-Za-z-_.]\+.*$
PEP-0263 关于的编码声明的解释
上一篇: Python 用for循环实现猜数字游戏
下一篇: Python持久化管理 pickle
49485
48693
39385
36456
30856
27680
26659
21480
21351
19697
378°
726°
636°
706°
1480°
787°
1468°
1693°
1340°
1315°