gpt4 book ai didi

python while循环用户输入

转载 作者:行者123 更新时间:2023-11-28 22:44:14 24 4
gpt4 key购买 nike

编写一个程序,不断询问用户输入数字,直到他们输入一个非数字。

这就是我现在所拥有的,似乎我已经创建了一个无限循环。

i = 0
count = 0
while i != (int):
i = input("Enter a number: ")

最佳答案

你可以使用 str.isdigit 方法,注意如果你在 python 2 你需要使用 raw_input 因为 isdigit() 是一个字符串方法:

i='0'
count = 0
while i.isdigit():
i = input("Enter a number: ")

在 python 2 中:

i='0'
count = 0
while i.isdigit():
i = raw_input("Enter a number: ")

关于python while循环用户输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29749547/

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