python 多行文本
时间: 2023-06-30 09:25:32 浏览: 197
浅析Python 多行匹配模式
在 Python 中,可以使用三个引号来表示多行文本字符串。例如:
```
text = '''This is a
multi-line
text.'''
```
也可以使用反斜杠来表示多行文本字符串。例如:
```
text = 'This is a \
multi-line \
text.'
```
无论哪种方式,都可以实现多行文本字符串的定义。
阅读全文