Python 原始字符串

raw 字符串 (原始字符串) 

格式: 在字符串前面加上 r

r‘字符串内容‘
r"字符串内容"
r‘‘‘字符串内容‘‘‘
r"""字符串内容"""
# 作用:
#   让转义符号 \ 无效

参考链接: https://blog.csdn.net/qulang4358/article/details/88700499

相关推荐