Python字符串

1.路径名

   path = ‘c:\nworld’

   如果想让程序认为'\n'是路径而不是回车,可以用

     path = ‘c:\\nworld’

      或者

       path = r‘c:\nworld’

      后一种方式是比较标准的。

2.中文字符

    name = '中国'

     在linux下,一般都会写成

   name = u‘中国’

posted @ 2012-09-29 14:42  冰呆瓜  阅读(131)  评论(0编辑  收藏  举报