python String (二),pythonstring,#!/usr/bin/p


#!/usr/bin/python# python中字符串可以用\xx表示print "Hi\nth\ere,\thow \141\x72\145\x20you?"# 双引号或者单引号之前加r表示是raw字符串,会忽略所有转义print r"Hi\nth\ere,\thow \141\x72\145\x20you?"print# r转义在表示windows路径时很有用,下面一行代阿表示的路径是错误的,因为\会被解析为转移,而加r后就正确了badpath = 'C:\that\new\stuff.txt';print badpathpath = r'C:\that\new\stuff.txt';print path

评论关闭