码迷,mamicode.com
首页 > 编程语言 > 详细

Python中文显示问题

时间:2015-10-29 18:19:44      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:

默认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> :

Python中文显示问题

标签:

原文地址:http://www.cnblogs.com/cnfangbo/p/4921104.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!