Answer the question
In order to leave comments, you need to log in
How to display the current month on the command line using the calendar module in Python?
How to display the current month on the command line using the calendar module in Python?
Answer the question
In order to leave comments, you need to log in
$ python -c "import calendar,datetime;today=datetime.datetime.today();calend=calendar.TextCalendar();calend.prmonth(today.year, today.month)"
May 2021
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
$ date "+%Y %m" | xargs python -m calendar
May 2021
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
import calendar,datetime
today=datetime.datetime.today()
calend = calendar.TextCalendar()
calend.prmonth(today.year, today.month)
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question