Welcome 微信登录
编程资源 图片资源库 蚂蚁家优选 PDF转换器 软件资源

软件开发小程序制作系统集成与运维空间租用硬件开发视频监控技术咨询与支持——联系电话:0311-88999002/88999003

首页 / 操作系统 / 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 "你好!"