gpt4 book ai didi

python - 如何读取键盘输入?

转载 作者:IT老高 更新时间:2023-10-28 21:05:31 27 4
gpt4 key购买 nike

我想用 Python 从键盘读取数据。我试过这段代码:

nb = input('Choose a number')
print('Number%s \n' % (nb))

但无论是在 Eclipse 还是在终端中,它都不起作用,它总是停止问题。我可以输入一个数字,但什么也没发生。

你知道为什么吗?

最佳答案

使用

input('Enter your input:')

如果你使用 Python 3。

如果你想要一个数值,只需转换它:

try:
mode = int(input('Input:'))
except ValueError:
print("Not a number")

如果你使用 Python 2,你需要使用 raw_input 而不是 input

关于python - 如何读取键盘输入?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5404068/

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