Skip to content Skip to main navigation Skip to footer

python中字符串前面加r的作用

在python字符串的使用者,如果在字符串前面加r字符,可以实现字符串的特殊字符不会发生转义,下面通过实例来演示r的用法:

本文实例讲述了python中字符串前面加r的作用。分享给大家供大家参考。具体分析如下:

字符串前面加r,表示的意思是禁止字符串转义

>>> print "asfdasn"
asfdas
>>> print "asfdas\n"
asfdasn
>>> print "asfdasn"
asfdas
>>> print r"asfdasn"
asfdasn
 


python中字符串前面加r的作用就是这样,欢迎大家参考。。。。

0 Comments

There are no comments yet

Leave a comment

Your email address will not be published.