python文件编码格式设置
Posted 幻雪追梦
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python文件编码格式设置相关的知识,希望对你有一定的参考价值。
报错:
File "./001hellopython.py", line 1
SyntaxError: Non-ASCII character ‘xe4‘ in file ./001hellopython.py on line 1, but no encoding declared;
see http://www.python.org/peps/pep-0263.html for details
原因:
Python默认是以ASCII作为编码方式的,需要在文件开头设置一下编码
# -*- coding: UTF-8 -*-
或者
#coding=utf-8
以上是关于python文件编码格式设置的主要内容,如果未能解决你的问题,请参考以下文章