>> print "asfdas\\n"asfdas\n>">
当前位置:Gxlcms > Python > python中字符串前面加r的作用

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

时间:2021-07-01 10:21:17 帮助过:60人阅读

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

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

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

希望本文所述对大家的Python程序设计有所帮助。

人气教程排行