鬼手0灯 发表于 2020-8-17 10:46:17

我的电脑认不出整数?

我在电脑运行了以下代码(是的复制粘贴的)。
temp = input("不妨猜一下小甲鱼现在心里想的是哪个数字:")
# 这种想法是因为 type(1) 会返回 <class 'int'>,如果 type(temp) 返回结果一致说明输入是整数。
while type(temp) != type(1):
    print("抱歉,输入不合法,", end='')
    temp = input("请输入一个整数:")
貌似无论输入什么(包括整数)都无法跳出循环
我又试了试这个
a = input("请输入起始年份")
while a.isdigit !=1:
    a=input("输入不合法,请再输入一次")
貌似也不行???????
是有什么补丁我没打么????

zltzlt 发表于 2020-8-17 10:47:10

a = input("请输入起始年份")
while not a.isdigit():
    a=input("输入不合法,请再输入一次")

你应该是还没看后面的内容吧。。。。

Hello. 发表于 2020-8-17 10:47:40

input 返回类型是字符串

鬼手0灯 发表于 2020-8-17 10:52:31

zltzlt 发表于 2020-8-17 10:47
你应该是还没看后面的内容吧。。。。

嗯嗯谢谢
刚学啊冒犯了
页: [1]
查看完整版本: 我的电脑认不出整数?