可按照错误建议网址查看http://www.python.org/peps/pep-0263.html
发现是因为Python在默认状态下不支持源文件中的编码所致。
解决方案有如下三种:
一、在文件头部添加如下注释码:
二、在文件头部添加如下两行注释码:
#!/usr/bin/python
# -*- coding: -*- 例如,可添加# -*- coding: utf-8 -*-
三、在文件头部添加如下两行注释码:
# vim: set fileencoding= : 例如,可添加# vim: set fileencoding=utf-8 :
原文地址:http://blog.csdn.net/sunnyyoona/article/details/41898823