📜  在 python 代码示例中获得闰年

📅  最后修改于: 2022-03-11 14:45:57.003000             🧑  作者: Mango

代码示例2
year = int(input("Write any year to check if it is leap year:- "))
if year % 4 == 0:
  if year % 100 == 0:
    if year % 400 == 0:
      print("Leap year.")
    else:
      print("Not leap year.")
  else:
    print("Leap year.")
else:
  print("Not leap year.")