繁宇宙 发表于 2022-8-10 17:12:35

python

temp = input('请输入一个年份:')
while not temp.isdigit():
    temp = input('你的输入有误,请重新输入一个整数:')
year = int(temp)
if year/400 == int(year/400):
    print(temp + '是闰年。')
else:
    print(temp + '不是闰年。')
请问为什么这样就能运行
temp = input('请输入一个年份:')
while not temp.isdigit():
    temp = input('你的输入有误,请重新输入一个整数:')
    year = int(temp)
    if year/400 == int(year/400):
      print(temp + '是闰年。')
    else:
      print(temp + '不是闰年。')
这样子就不能运行了呢?

青出于蓝 发表于 2022-8-10 17:20:21

第2行是判断输入的是否是一个数字(不然怎么判断)
如果不是则再次输入,这是一个循环
而判断则要在循环外

柿子饼同学 发表于 2022-8-10 17:21:03

条件是 not temp.isdigit() 即如果 temp 输入不合法才为真 , 进入循环
但是我们需要让 temp 里全是数字 , 所以需要一个合法的temp来判断
你把判断放在它底下当然不对

临时号 发表于 2022-8-10 17:21:41

本帖最后由 临时号 于 2022-8-10 17:35 编辑

第二行的while循环意思是如果输入的不是整数那就重新输入
如果把判断缩到while中的话达不到想要的效果了,所以不能把判断缩到while循环中
还有,你的代码逻辑有点问题
temp = input('请输入一个年份:')
while not temp.isdigit():
    temp = input('你的输入有误,请重新输入一个整数:')
year = int(temp)
if year % 4 == 0 and year % 100 != 0 or year % 400 == 0:
    print(temp + '是闰年。')
else:
    print(temp + '不是闰年。')

一点点儿 发表于 2022-8-10 17:33:32

本帖最后由 一点点儿 于 2022-8-10 17:36 编辑

while not temp.isdigit():   的意思是当temp不是仅由数字构成时进入循环,
输入整数时,下面代码循环判断条件为假,不进入循环,程序结束,
而上面代码循环代码的后面还有下面这段代码,不进入循环,会执行下面这段代码
year = int(temp)
if year/400 == int(year/400):
    print(temp + '是闰年。')
else:
    print(temp + '不是闰年。')

缩进决定代码在不在循环里面
页: [1]
查看完整版本: python