770686119 发表于 2018-12-14 16:34:01

小甲鱼零基础入门学习Python-005 判断闰年

temp = input("请输入年份:")
whiletemp != 'quit' :
    if temp.isdigit() == True:
      year = int(temp)
      if (year % 4 == 0 and year % 100 !=0) or year % 400 == 0 :
            print(year,end='')
            print("是闰年")
            temp = input("再玩一次,请输入年份:")
      else:
            print(year,end='')
            print("不是闰年")
            temp = input("再玩一次,请输入年份:")
    else:
      print("输入格式不正确")
      temp = input("再玩一次,请输入年份:")
if temp == 'quit':
    print('退出')

烟花i 发表于 2018-12-14 18:07:58

{:10_256:}

happy_study 发表于 2018-12-14 18:15:26

握手,同努力
页: [1]
查看完整版本: 小甲鱼零基础入门学习Python-005 判断闰年