Check if Given Year is Leap Year using Python November 23, 2020 Python 0 Comments 575 Views calendar module import calendar year = 2024 isLeapYear = calendar.isleap(year) print(isLeapYear)
Leave a Comment
Cancel reply