Computer Science, asked by archanashukla94563, 3 months ago

make programs

please give answer​

Attachments:

Answers

Answered by deepdsd02
1

Answer:

year = 2000

# To get year (integer input) from the user

# year = int(input("Enter a year: "))

if (year % 4) == 0:

  if (year % 100) == 0:

      if (year % 400) == 0:

          print("{0} is a leap year".format(year))

      else:

          print("{0} is not a leap year".format(year))

  else:

      print("{0} is a leap year".format(year))

else:

  print("{0} is not a leap year".format(year))

Explanation:

Similar questions