python中文注释及输出出错

来源:互联网 发布:外交趣事 知乎 编辑:程序博客网 时间:2024/05/19 12:38


    今天开始接触python,中文报错,你懂的,不细说。

    网上很多类似的解决方案,有不是很明确,例如:http://blog.csdn.net/chen861201/article/details/7706535

    方法有二,1、在代码开头加#coding=utf-8(注意要加#)

                        2、还是在代码开头加#-*- coding: utf-8 -*-(亲,还是要注意要加#)


   

#-*- coding: utf-8 -*-#coding=utf-8#hello worldprint 'hello world''''#ifif 1:  print 'python'else:  print 'learning new language is a very happy things''''#while循环x=1while x<=100:  print 'I love python 第%d遍' %x  print 'the second way to show '+str(x)  x += 1