write program to take years at input and check if it is a leap year or not
durgakumawat81031:
plZ solve my quess
Answers
Answered by
1
Answer:
See this example:
year = int(input("Enter a year: ")) ... if (year % 100) == 0: if (year % 400) == 0: print("{0} is a leap year".
Similar questions