鱼C论坛

 找回密码
 立即注册
查看: 1770|回复: 2

[技术交流] Python FAQ 046 判断闰年程序总是输出 “不是闰年”

[复制链接]
发表于 2020-7-27 13:44:10 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
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("不是闰年")

评分

参与人数 1贡献 +3 收起 理由
nizitao + 3

查看全部评分

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-7-27 13:49:58 | 显示全部楼层
sofa
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-7-27 14:00:16 | 显示全部楼层
bench
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-24 13:49

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表