Python Exercises: Count the number of leap years within the range
Count leap years in a year range.
Write a Python program that counts the number of leap years within the range of years. Ranges of years should be accepted as strings.
Sample Data:
("1981-1991") -> 2
("2000-2020") -> 6
Sample Solution-1:
Python Code:
Sample Output:
Range of years: 1981-1991 Count the number of leap years within the said range: 2 Range of years: 2000-2020 Count the number of leap years within the said range: 6
Flowchart:

Sample Solution-2:
Python Code:
Sample Output:
Range of years: 1981-1991 Count the number of leap years within the said range: 2 Range of years: 2000-2020 Count the number of leap years within the said range: 6
Flowchart:

For more Practice: Solve these Related Problems:
- Write a Python program to parse a year range given as a string (e.g., "1981-1991") and count the number of leap years in that range.
- Write a Python program to use the calendar module to determine how many leap years exist between two years extracted from a string.
- Write a Python program to implement a function that returns the leap year count from a year range input in the format "start-end".
- Write a Python program to split a string representing a range of years, convert to integers, and count leap years using conditional logic.
Python Code Editor:
Previous Python Exercise: Hash elements.
Next Python Exercise: Insert space before capital letters in word.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics