今天开始接触python,中文报错,你懂的,不细说。
网上很多类似的解决方案,有不是很明确,例如:http://blog.csdn.net/chen861201/article/details/7706535
方法有二,1、在代码开头加#coding=utf-8(注意要加#)
2、还是在代码开头加#-*- coding: utf-8 -*-(亲,还是要注意要加#)
#-*- coding: utf-8 -*-
#coding=utf-8
#hello world
print 'hello world'
'''
#if
if 1:
print 'python'
else:
print 'learning new language is a very happy things'
'''
#while循环
x=1
while x<=100:
print 'I love python 第%d遍' %x
print 'the second way to show '+str(x)
x += 1