Skip to content
Coding Python
Menu
  • Home
  • Python Programs
  • Mini Projects
  • Major Projects
  • About
  • Privacy Policy
Menu

Print calendar of a given month and year Python program

Posted on September 15, 2022

Print calendar of a given month and year Python program

import calendar

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

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

print(calendar.month(y, m))

 

 

Input the year : 2022
Input the month : 9
September 2022
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

>>>

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Recent Posts

  • Informatics Practices Class 12 Question Bank Chapter wise
  • Python Practice Paper for Class 12
  • Python Libraries MCQ Class 12
  • Python Revision Tour Worksheet Class 12
  • Class 12 Computer Science Worksheets

Recent Comments

No comments to show.

Archives

  • November 2022
  • October 2022
  • September 2022
  • August 2022

Categories

  • Major Projects
  • Mini Projects
  • Python for Class 12
  • Python Programs
©2023 Coding Python | Design: Newspaperly WordPress Theme