Answer to Question #203600 in Python for vjay

Question #203600

Weekends

Given two dates D1 and D2, write a program to count the number of Saturdays and Sundays from D1 to D2 (including D1 and D2).

The date in string format is like "8 Feb 2021".Input


The first line of input will contain date D1 in the string format.

The second line of input will contain date D2 in the string format.


Output

The output should be a single line containing two integers separated by space


Explanation

For example, if the given dates are "25 Jan 2021" and "14 Feb 2021", the Saturdays and Sundays dates from "25 Jan 2021" to "14 Feb 2021" are

"30 Jan 2021" is a Saturday

"31 Jan 2021" is a Sunday

"6 Feb 2021" is a Saturday

"7 Feb 2021" is a Sunday

"13 Feb 2021" is a Saturday

"14 Feb 2021" is a Sunday


output

Saturday: 3

Sunday: 3


Sample Input 1

25 Jan 2021

14 Feb 2021


Sample Output 1

Saturday: 3

Sunday: 3


Sample Input 2

25 May 2019

22 Dec 2021


Sample Output 2

Saturday: 135

Sunday: 135


1
Expert's answer
2021-06-05T23:52:33-0400
import datetime


start_d= input("Enter start date: ")
end_d = input("Enter end date: ")
start_date = datetime.datetime.strptime(start_d, '%d %b %Y')
end_date = datetime.datetime.strptime(end_d, '%d %b %Y')
d = datetime.timedelta(days=1)
count_sat = 0
count_sun = 0
while start_date <= end_date:
    if start_date.isoweekday() == 6:
        count_sat += 1
    if start_date.isoweekday() == 7:
        count_sun += 1
    start_date += d


print("Saturday: ",count_sat)
print("Sunday: ",count_sun)


Output



Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS