+ 7
Challenge: Make a program to get Callender for given year and months.
for example: if user input the month Feb and year 2018 then the output should be ----------------------------------------- Sun Mon Tue Wed Thurs Fri Sat 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 ----------------------------------------- I wish you all can do this challenge 😃😃😃
6 odpowiedzi
+ 8
finally it's done
https://code.sololearn.com/cBiJ0l48QUf4/?ref=app
+ 3
great code Louis 👏👏👏👏👌👌👌
+ 3
The whole calendar of 2018:
https://code.sololearn.com/cx4YCZbT50n6/?ref=app
And calender for particular month:
import calendar
print (calendar.month (2018,2))