python中换行符
时间: 2023-08-30 18:05:55 浏览: 73
python里面的换行符
在 Python 中,可以使用 `\n` 来表示换行符。例如:
```python
print("Hello\nWorld")
```
输出结果为:
```
Hello
World
```
也可以使用三引号来表示多行字符串,例如:
```python
text = """Hello
World"""
print(text)
```
输出结果同样为:
```
Hello
World
```
阅读全文