if (year % 4 == 0 and year % 100 != 0) or (year % 400 == 0):
print(True)
else:
print(False)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
if (year % 4 == 0 and year % 100 != 0) or (year % 400 == 0):
print(True)
else:
print(False)