Python不能识别中文问题

2023-01-31 02:01:45 python 中文 识别

python文件中出现中文字符,运行时会出现如下错误

SyntaxError: Non-ASCII character '\xd5' in file sort.py on line 2, but no encodi
ng declared; see Http://www.Python.org/peps/pep-0263.html for details

可以在python的文件开始处加入下面声明即可fix这个error

# -*- coding: gbk -*


或使用

#!/usr/bin/python
#coding:utf-8
即可输出中文


相关文章