python 使用 UTF-8 编码

时间:2024-10-19 08:24:40

题记

一般我喜欢用 utf-8 编码,在 python 怎么使用呢?

使用utf-8 文字

在 python 源码文件中用 utf-8 文字。一般会报错,如下:

File "F:\workspace\psh\src\", line 2
SyntaxError: Non-ASCII character '\xe4' in file F:\workspace\psh\src\ on line 2, but no encoding declared; see /peps/ for details

的内容:

print "你好"  

如果要正常运行在 文件前面加编码注释,如:

#!/usr/bin/python2.6  
# -*- coding: utf-8 -*-  
print "你好"  

或者加入:

import sys
reload(sys)
('utf-8')

更多入门教程可以参考:[/] (/)