Python:判断是否是闰年

#判断是否是闰年
while True:
  year_str= input("请输入年份:")
  if  year_str.isdigit():              #str.isdigit 判断字符串是否为数字
      year=int(year_str)
      if (year % 4==0 and year %100 != 0) or year % 400 ==0:
          print("这是闰年!")
      else :
          print("这是平年!")
      break
  else:
      print("请输入正确的年份:")
上一篇:asp.net core 二 Nginx Supervisor 负载,监听


下一篇:爬虫与Python:(二)Python基础篇——扩展:判断闰年