반응형
[python] Print Calendar
from calendar import*
year = int(input('EnterYear: '))
print(calendar(year, 2, 1, 8, 3))
#2 = 2 characters for days (Mo, Tu, etc)
#1 = 1 line (row) for each week
#8 = 8 rows for each month
#3 = 3 columns for all months of the year.
반응형
'프로그래밍 > Python' 카테고리의 다른 글
[PYTHON] 흐름대로 프로그래밍하는 Flowgorithm (1) | 2024.01.10 |
---|---|
[PYTHON] 4 Ways to Solve FizzBuzz in Python (0) | 2024.01.10 |
[python] pywhatkit : 이미지를 아스키코드로 변환 (0) | 2023.11.24 |
[python] Python pip 업그레이드 오류 (0) | 2023.11.23 |
[python] Hand gesture recognition in Python using OpenCV (0) | 2023.11.13 |