鱼C论坛

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

[已解决]关于闰年的判断

[复制链接]
发表于 2020-7-25 21:49:05 | 显示全部楼层 |阅读模式

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

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

x
这样写为什么不能判断出闰年啊
tempt = input("please input:")
if tempt.isdigit() == 0:
    print("wrong type")
else:
    year = int(tempt)
    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("不是闰年")        

最佳答案
2020-7-25 21:51:37
本帖最后由 Twilight6 于 2020-7-25 21:54 编辑



因为 Python 中除法返回的都是 浮点型,导致你的 isinstance 判断是否为 int 整型时永远返回的都是 False

改成这样,用 int 后的值和原来除数的值进行比较,就能知道是否被整除  因为 1.0 是等于 1 的
tempt = input("please input:")
if tempt.isdigit() == 0:
    print("wrong type")
else:
    year = int(tempt)
    a = year/4
    b = year/100
    c = year/400
    if c == int(c):
        print("闰年")
    else:
        if a == int(a) and b != int(b):
            print("闰年")
        else:
            print("不是闰年")        

或者用求余运算符,来判断是否被整除:
tempt = input("please input:")
if tempt.isdigit() == 0:
    print("wrong type")
else:
    year = int(tempt)
    a = year%4
    b = year%100
    c = year%400
    if not c:
        print("闰年")
    else:
        if not a and b:
            print("闰年")
        else:
            print("不是闰年")        

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

使用道具 举报

发表于 2020-7-25 21:51:37 | 显示全部楼层    本楼为最佳答案   
本帖最后由 Twilight6 于 2020-7-25 21:54 编辑



因为 Python 中除法返回的都是 浮点型,导致你的 isinstance 判断是否为 int 整型时永远返回的都是 False

改成这样,用 int 后的值和原来除数的值进行比较,就能知道是否被整除  因为 1.0 是等于 1 的
tempt = input("please input:")
if tempt.isdigit() == 0:
    print("wrong type")
else:
    year = int(tempt)
    a = year/4
    b = year/100
    c = year/400
    if c == int(c):
        print("闰年")
    else:
        if a == int(a) and b != int(b):
            print("闰年")
        else:
            print("不是闰年")        

或者用求余运算符,来判断是否被整除:
tempt = input("please input:")
if tempt.isdigit() == 0:
    print("wrong type")
else:
    year = int(tempt)
    a = year%4
    b = year%100
    c = year%400
    if not c:
        print("闰年")
    else:
        if not a and b:
            print("闰年")
        else:
            print("不是闰年")        

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

使用道具 举报

 楼主| 发表于 2020-7-25 21:54:36 | 显示全部楼层
Twilight6 发表于 2020-7-25 21:51
因为 Python 中除法返回的都是 浮点型,导致你的 isinstance(c,int) 永远返回的都是 False

改成这样 ...

谢谢!明白了!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-19 20:39

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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