gpt4 book ai didi

python - 如何使输入行低于打印行?

转载 作者:太空宇宙 更新时间:2023-11-04 07:31:35 25 4
gpt4 key购买 nike

这是我的:

choice = int(input("Choose an action")) - 1

在控制台中显示如下:

Choose an action(The user input goes here)

我想要的是:

Choose an action
(the user input goes here)

最佳答案

您可以打印消息,这将自动添加一个换行符:

print("Choose an action")
choice = int(input()) - 1

或者在输入消息的末尾手动包含一个换行符 (\n):

choice = int(input("Choose an action\n")) - 1

关于python - 如何使输入行低于打印行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46279794/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com