在使用python2运行.py
文件时,有时会报以下错误:SyntaxError: Non-ASCII character '\xe6' in file 1.py on line 5, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details
该错误的原因是python2的默认编码格式与源文件的编码格式不一致导致的,这时候需要在文件头指定编码格式,具体的指定方式有如下三种:
- 在文件头部添加如下注释码:
#coding=<encoding name>
例如,可添加# coding=utf-8
在文件头部添加如下两行注释码:
#!/usr/bin/python
# -*- coding: <encoding name> -*-
例如,可添加# -*- coding: utf-8 -*-
在文件头部添加如下两行注释码:
#!/usr/bin/python
# vim: set fileencoding=<encoding name>
: 例如,可添加# vim: set fileencoding=utf-8
:
推荐第一种,简单