Python系列笔记
Python入门基础:1.python入门(一)
Python入门基础:1.python入门(二)
Python入门基础:2.七十二变(1)
转义字符
反斜杠+想要实现的转义功能首字母
## 转义字符
print("hello\nworld")
print("hello\tworld")
print("hello\rworld")
print("hello\bworld")
## 原字符.不希望字符串中的转义字符其作用,就使用原字符,就是在字符串之前加上r或R
print(r"hello\rworld")
## 注意事项,最后一个字符不能是反斜杠
hello
world
hello world
world
hellworld
hello\rworld
转载请注明:
周小钊的博客
>>>
python入门(一)