5258885 发表于 2019-9-27 11:17:02

python新手求助

year=input('输入一个年份:')
temp=int(year)
a=temp/4
b=temp/400
c=temp/100
if isinstance(b,int):
    print(year+'是闰年')
else:
    if isinstance (a,int):
      if isinstance (c,float):
            print(year+'是闰年')
      else:
            print(year+'不是闰年')
哪里有毛病,谢谢

lihouyu001 发表于 2019-9-27 11:31:42

year = int(input('请输入一个年份: '))

a = year % 4
b = year % 400
c = year % 100

if a == 0 and b == 0 and c == 0 :
    print('True')
else:
    print('False')

不知道我这样对不对

yuweb 发表于 2019-9-27 11:37:11

本帖最后由 yuweb 于 2019-9-27 11:39 编辑

闰年是 四年一闰,百年不闰,四百年再闰。 例如,2000年是闰年,2100年则是平年
用取余操作%,除法的话像2000/4会等于500.0而不是500,但2000年是闰年,所以楼主的用法不大对
year = input('输入一个年份:')
temp = int(year)
a = temp%4
b = temp%400
c = temp%100
if b==0:
    print(year+'是闰年')
else:
    if a==0:
      if c!=0:
            print(year+'是闰年')
      else:
            print(year+'不是闰年')
    else:
      print(year+'不是闰年')

jackz007 发表于 2019-9-27 12:40:24

本帖最后由 jackz007 于 2019-9-27 12:41 编辑

      Python 中,普通除法得到的结果一定是 float,也就是说,不用问,楼主代码中的 a、b、c 肯定都是浮点数,所以,想通过这三个变量是否是整型数的方法来判断是否整除是不可能行得通的。

      Python 判断两个数是否能整除用取余操作,如果 a 能被 b 整除,用
a % b == 0
      也就是余数为零来判断

      所以,判断闰年的条件表达应该是:

if year % 4 == 0 and year % 100 != 0 or year % 400 == 0:
    print("是闰年")
else:
    print("不是闰年")

5258885 发表于 2019-9-27 13:05:40

jackz007 发表于 2019-9-27 12:40
Python 中,普通除法得到的结果一定是 float,也就是说,不用问,楼主代码中的 a、b、c 肯定都是浮点 ...

谢谢,就是/除法都会是浮点?学到了,谢谢

5258885 发表于 2019-9-27 13:06:30

谢谢各位大佬
页: [1]
查看完整版本: python新手求助