#coding=utf-8# 字符串指示符号 r表示raw u表示unicodemystring=u'this is unicode!--by'
print mystring# 'raw'表示告诉解释器不要转换字符串任何字符file=r'c:\temp\folder\robots.txt'
print file# 另一个实用raw的地方是正则表达式# 可以在'''内放任何的字符串,不需要转义,比如xml
s='dongshen'
print '%s is number %d' %(s[:6],1)
hi='''hithere
'''
print hi
转载于:https://www.cnblogs.com/yufenghou/p/5097355.html