在Python中,可以使用换行符"\n"来实现换行输出。例如:
print("第一行\n第二行")
输出结果为:
第一行 第二行
另外,也可以使用多个print语句分别输出不同的行,例如:
print("第一行") print("第二行")
输出结果同样为: