python字符转义
时间: 2023-07-01 14:18:12 浏览: 91
一篇文章搞懂python的转义字符及用法
5星 · 资源好评率100%
在Python中,如果我们需要将某些字符转义,可以使用反斜杠(\)来实现。常用的转义字符包括:
- \n:换行
- \t:制表符
- \r:回车
- \’:单引号
- \”:双引号
- \\:反斜杠
例如,如果我们需要在字符串中插入一个换行符,可以这样写:
```
print('Hello\nworld!')
```
输出结果为:
```
Hello
world!
```
同理,如果我们需要在字符串中插入一个单引号,可以这样写:
```
print('It\'s a nice day.')
```
输出结果为:
```
It's a nice day.
```
阅读全文