x = float(input("Please enter x value: "))
print("random next line")
我希望最终结果看起来像
Please enter x value: 5
random next line
如何在询问用户输入后跳过一行,但如果没有添加
,则不将用户输入放在下一行print("")
答案 0 :(得分:1)
x = float(input("Please enter x value: "))
print("\nrandom next line")
将首先打印换行符(\n
),为您提供一个空行。
答案 1 :(得分:0)
x = float(input("Please enter x value: "))
print
print("random next line")
答案 2 :(得分:0)
print("")
或print("\nrandom next line")
答案 3 :(得分:0)
怎么样:
x = float(input("Please enter x value: "))
print('\n' + your_next_line)
这样,你可以传递你想要的任何字符串,并简单地连接前面的\ n换行符。