Python: Count the number of Monday of the 1st day of the month between two years
Python Datetime: Exercise-24 with Solution
Write a Python program to count the number of Mondays on the 1st day of the month from 2015 to 2016.
Sample Solution:
Python Code:
import datetime
from datetime import datetime
monday1 = 0
months = range(1,13)
for year in range(2015, 2017):
for month in months:
if datetime(year, month, 1).weekday() == 0:
monday1 += 1
print(monday1)
Sample Output:
3
Flowchart:

Python Code Editor:
Contribute your code and comments through Disqus.
Previous: Write a Python program to add a month with a specified date.
Next: Write a Python program to print a string five times, delay three seconds.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join