Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/judevector/calender

Program to print Calender in Python 🗓️
https://github.com/judevector/calender

calendar date python

Last synced: 3 days ago
JSON representation

Program to print Calender in Python 🗓️

Awesome Lists containing this project

README

        

# Calender
Program to print Calender in Python 🗓️

This program prompts the user to enter the year and month

Based on the input it calls the month() calender function

#Code Example
```
Enter Year: 2022
Enter Month: 09
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
```

Which displays the Calendar of the given month for a given year.