转义字符与原字符

天数
Day2
URL
Files & media
转义字符与原字符.py
notion image
# 转义字符 print('hello\nworld') # \+转义功能首字母 n——>newline的首字符表示换行 print('hello\tworld') print('helloooo\tworld') print('hello\rworld') #world将hello进行了覆盖 print('hello\bworld') #\b 是退一个格,将o退没了 print('http:\\\\www.baidu.com') print('老师说:\'大家好\'') #原字符,不希望字符串中的转义字符起作用,就使用原字符,就是在字符串之前加上r,或R print(r'hello\nworld') #注意事项,最后一个字符不能是反斜杠 #print(r'hello\nwordl\') print(r'hello\nwordl\\')