如图所示,想要将一行输出的两句诗词,变成二行输出方式,应该如何写输出指令?
print("床前明月光,疑是地上霜")
print("""床前明月光 疑是地上霜""")
print("床前明月光
疑是地上霜")
print("""床前明月光
疑是地上霜""")