首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > perl python >

python汉语注释及输出出错

2013-09-10 
python中文注释及输出出错今天开始接触python,中文报错,你懂的,不细说。网上很多类的解决方案,有不是很明确

python中文注释及输出出错


    今天开始接触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 

热点排行