1.路径名
path = ‘c:\nworld’
如果想让程序认为'\n'是路径而不是回车,可以用
path = ‘c:\\nworld’
或者
path = r‘c:\nworld’
后一种方式是比较标准的。
2.中文字符
name = '中国'
在linux下,一般都会写成
name = u‘中国’