PY
py
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
##################################
# #
# Author: #
# Code: Python Calendar #
# Date/Time: ----> #
# #
##################################
"""Calendar printing functions
Note when comparing these calendars to the ones printed by cal(1): By
default, these calendars have Monday as the first day of the week, and
Sunday as the last (the European convention). Use setfirstweekday() to
set the first day of the week (0=Monday, 6=Sunday).
==========================================
Warning//: This code will not display well on a mobile device(Portrait)... Try in Landscape mode. If it still not display well, try it on your system...
Goodluck
"""
import time
print(time.asctime())
import sys
import datetime
import locale as _locale
from itertools import repeat
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run