码迷,mamicode.com
首页 > 编程语言 > 详细

The Python Tutorial

时间:2016-02-01 02:10:51      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:

1、

>>> print(‘C:\some\name‘)  # here \n means newline!
C:\some
ame
>>> print(r‘C:\some\name‘)  # note the r before the quote
C:\some\name
第一个语句中 print中没有加入r 所以 print会将字符创中的\n理解为 newline,而在第二个语句中由于加入了r,它使用了原始字符串,所以没有进行另起一行

The Python Tutorial

标签:

原文地址:http://www.cnblogs.com/chdxiaoming/p/5174144.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!