python 中有两种主要换行输出方法:使用 print() 函数并在输出字符串末尾添加 “n”。使用 newline 参数,将 newline 设置为 true。其他换行选项包括直接在字符串中插入 “n” 或使用 os.linesep 常量。
Python 换行输出
在 Python 中,换行输出可以轻松实现,有两种主要方法:
1. 使用 print() 函数
print() 函数默认将输出打印到标准输出,也就是控制台。要换行,只需在输出字符串后面添加一个 “n” 字符。例如:
立即学习“Python免费学习笔记(深入)”;
print("Hello, world!") print("nThis is a new line.")
2. 使用 newline 参数
print() 函数还接受一个名为 newline 的可选参数。将 newline 设为 True 可以强制输出换行,无论字符串中是否存在 “n” 字符。例如:
print("Hello, world!", end="nThis is a new line.n")
其他方法
除了 print() 函数外,Python 还提供了其他换行选项:
- n 字符:直接在字符串中插入 “n” 字符可以强制换行。例如:
sentence = "Hello, world!nThis is a new line." print(sentence)
- os.linesep:os 模块中的 linesep 常量表示当前平台的换行符。例如:
import os print("Hello, world!" + os.linesep + "This is a new line.")
选择方法
选择哪种换行方法取决于个人喜好和特定情况。通常,使用 print() 函数最简单,而 “n” 字符和 newline 参数提供了更多的灵活性。