📅

Calendar

Python47 lines· A console program that prints the calendar for a year and month entered by the user, with input validation.
Original project by @snehafarkya — view source on GitHub
Ready when you are
README· what to build

Calendar

A console program that prints the calendar for a year and month entered by the user, with input validation.

Example

Enter year: 2024
Enter month: 3
   March 2024
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 31

How to run on localhost

python displayCalendar.py

Dependencies

Standard library only (calendar).

calendar.py· Python 3.x
44 lines
Console· terminal