歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

Python源文件中使用UTF-8編碼

測試文件hello.py:

print "你好!"

運行一般都會報錯:

File "hello.py", line 1
SyntaxError: Non-ASCII character '\xe4' in file hello.py on line 1, but no encoding declared; see http://www.python.org/peps/pep-0263.html for details

加上編碼注釋就能運行:

# -*- coding: utf-8 -*-
print "你好!"

Copyright © Linux教程網 All Rights Reserved