python中原始字符串的几种写法

版权声明: https://blog.csdn.net/qq_41992047/article/details/82770911

1.用\既可以对自身进行转义,又可以对其他符号进行转义

如‘c:\now'转义后是'c:\\now'

2如果字符串中有很多反斜杠,可以在字符串前面加上r

即r‘c:\now'

如果想得到跨越多行字符串就可以使用三重引号字符串

猜你喜欢

转载自blog.csdn.net/qq_41992047/article/details/82770911