zltzlt 发表于 2020-7-27 13:44:10

Python FAQ 046 判断闰年程序总是输出 “不是闰年”

Python FAQ 046 判断闰年程序总是输出 “不是闰年”

问题

为什么下面的代码不能正确判断是否为闰年啊?

temp = input("please input:")
if not temp.isdigit():
    print("wrong type")
else:
    year = int(temp)
    a = year / 4
    b = year / 100
    c = year / 400
    if isinstance(c, int):
      print("闰年")
    else:
      if isinstance(a, int) and isinstance(b, float):
            print("闰年")
      else:
            print("不是闰年")

解答

因为 Python 除法无论结果是否为整数,结果都为浮点数:

>>> 5 / 2
2.5
>>> 4 / 2
2.0

导致 isinstance() 那块判断永远都为 False。

建议用取余运算符判断是否能够整除:

temp = input("please input:")
if not temp.isdigit():
    print("wrong type")
else:
    year = int(temp)
    a = year % 4
    b = year % 100
    c = year % 400
    if not c:
      print("闰年")
    else:
      if not a and b:
            print("闰年")
      else:
            print("不是闰年")

xiaosi4081 发表于 2020-7-27 13:49:58

sofa{:10_327:}

wuqramy 发表于 2020-7-27 14:00:16

bench{:10_256:}
页: [1]
查看完整版本: Python FAQ 046 判断闰年程序总是输出 “不是闰年”