w3resource

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:

Flowchart: Count the number of Monday of the 1st day of the month between two years.

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.



Follow us on Facebook and Twitter for latest update.