首页 > 学院 > 开发设计 > 正文

Python中文显示问题

2019-11-14 16:56:42
字体:
来源:转载
供稿:网友

默认pyhon使用ASCII码来解释程序的,默认不支持中文,需要在程序的第一行或者第二行声明编码。

官方解决方案:https://www.python.org/dev/peps/pep-0263/

    To define a source code encoding, a magic comment must    be placed into the source files either as first or second    line in the file, such as:          # coding=<encoding name>    or (using formats recognized by popular editors)          #!/usr/bin/python          # -*- coding: <encoding name> -*-    or          #!/usr/bin/python          # vim: set fileencoding=<encoding name> :

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表