python中文字符

只需在开头声明 # -*- coding: utf-8 -*-


代码如下

 
# -*- coding: utf-8 -*-

print "hello world"


print '100+200=',100+200

s1=raw_input('请输入字符\n')
s2=raw_input()

print s1+s2

    


输出

hello world
100+200= 300
请输入字符
哈哈哈
hehehe
哈哈哈hehehe

运行环境mac  python2.7

你可能感兴趣的:(python,utf-8)