Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 🗓️
- Host: GitHub
- URL: https://github.com/judevector/calender
- Owner: judeVector
- Created: 2022-10-25T16:41:23.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-10-25T16:45:58.000Z (about 2 years ago)
- Last Synced: 2024-11-10T08:10:39.728Z (2 months ago)
- Topics: calendar, date, python
- Language: Python
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.