在Python命令行中,可以使用以下方法进行换行:
- 使用反斜杠(\):
print("第一行输出。\n第二行输出。")
- 使用括号(()):
print("第一行输出。") print("第二行输出。")
- 使用三引号(‘’'或"“”):
print("""第一行输出。 第二行输出。""")
- 使用sys模块的stdout.write()方法:
import sys sys.stdout.write("第一行输出。\n") sys.stdout.write("第二行输出。")
请注意,这些方法在不同的Python解释器和环境中可能会有所不同。建议使用括号(())方法,因为它在所有Python环境中都能正常工作。