Computer Science, asked by rohitsingh2771, 5 months ago

write a program to print the calender of given month and year​

Answers

Answered by TusharTheBrain
0

Answer:

Sample Solution:-

Python Code:

import calendar

y = int(input("Input the year : "))

m = int(input("Input the month : "))

print(calendar.month(y, m))

Copy

Sample Output:

Input the year : 2017

Input the month : 04

April 2017

Mo Tu We Th Fr Sa Su

1 2

3 4 5 6 7 8 9

10 11 12 13 14 15 16

17 18 19 20 21 22 23

24 25 26 27 28 29 30

Flowchart:

Flowchart: Print the calendar of a given month and year .

Answered by Skvkartik31
0

Answer:

Python calendar.month(theyear, themonth, w=0, l=0):

The function returns a month’s calendar in a multi-line string using the formatmonth() of the TextCalendar class.

'l' specifies the number of lines that each week will use.

Similar questions