TORONTO KIDS COMPUTER CLUB | PMCA Friday 19:00 Python Homework 20.09.11.
18301
post-template-default,single,single-post,postid-18301,single-format-standard,ajax_fade,page_not_loaded,,qode-theme-ver-7.6.2,wpb-js-composer js-comp-ver-6.10.0,vc_responsive

PMCA Friday 19:00 Python Homework 20.09.11.

15 Sep PMCA Friday 19:00 Python Homework 20.09.11.

Question:
Write a program to print out a calendar for a particular month given the day on which the first of the month occurs together with the number of days in the month.

Your program should take as input an integer representing the day of the week on which the month begins (1 for Sunday, 2 for Monday, … , 7 for Saturday), and an integer which is the number of days in the month (between 28 and 31 inclusive). Your program should print the appropriate calendar for the month. You can assume that all input data will be valid.

None of the output lines should contain trailing whitespace. The last line must end with a newline.

Sample Input
3 30

Sample Output
Sun Mon Tue Wed Thr 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 29 30

No Comments

Sorry, the comment form is closed at this time.