PythonSyntaxError: Non-ASCII character '\xe8' in file 1.py on line 10, but no encoding declared;

Python出现报错:
SyntaxError: Non-ASCII character ‘\xe8’ in file 1.py on line 10, but no encoding
declared; see http://python.org/dev/peps/pep-0263/ for details

发现是因为Python在默认状态下不支持源文件中的编码所致。解决方案有如下三种:

一、在文件头部添加如下注释码:

# coding= 例如,可添加# coding=utf-8

二、在文件头部添加如下两行注释码:

#!/usr/bin/python

# -- coding: -- 例如,可添加# -- coding: utf-8 --

三、在文件头部添加如下两行注释码:

#!/usr/bin/python

# vim: set fileencoding= : 例如,可添加# vim: set fileencoding=utf-8 :

你可能感兴趣的:(python)