PY
py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Inspired by Terminator's Calendar
# Input: The year you want the calendar of.
# Leave it blank for current year's calendar.
import calendar
from datetime import datetime as dt
try:
yr = int(input("Calendar Year: "))
except:
yr = dt.now().year
for i in range(1,13):
print("\n")
print(calendar.month(yr,i,4,2))
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run