python换行字符串
时间: 2023-09-10 17:13:52 浏览: 130
python里面的换行符
在Python中,可以使用多种方式来换行字符串。以下是一些常用的方法:
1. 使用三引号(''' 或 """)来创建多行字符串,例如:
```python
string = '''
This is a
multi-line
string.
'''
```
2. 使用转义字符 `\n` 在字符串中插入换行符,例如:
```python
string = "This is a\nmulti-line\nstring."
```
3. 使用括号将长字符串分成多行,例如:
```python
string = ("This is a "
"multi-line "
"string.")
```
无论使用哪种方法,最终生成的字符串都会包含换行符,可以在输出时显示为多行文本。
阅读全文