1. 달력 출력
import calendar
print(calendar.calendar(2020))
# 2020년도의 달력 정보가 모두 출력됩니다.
# ( 출력량 많음 주의! )
import calendar
print(calendar.prcal(2020))
# 위로 대체할 수 있습니다.
2. 특정 연도의 특정 월 달력만 확인
import calendar
calendar.prmonth(2020, 7)
3. 특정 날짜의 요일 확인
import calendar
calendar.weekday(2020, 7, 13)
# 0 = 월요일
# 1 = 화요일
# 2 = 수요일
# 3 = 목요일
# 4 = 금요일
# 5 = 토요일
# 6 = 일요일
4. 특정 월의 개요 정보 확인
(x, y) 라고 출력될 경우
x는 해당 월의 첫 화요일인 날짜이고
y는 해당 월의 마지막날 일입니다.
import calendar
calendar.monthrange(2020, 7)
# (2, 31)
위 예시의 경우, 2020년 7월의 첫 화요일은 7월 2일이고, 2020년 7월 31일이 2020년 7월의 마지막 날입니다.
'Development > Python' 카테고리의 다른 글
[Solved][Python] RuntimeError: threads can only be started once (0) | 2020.07.15 |
---|---|
[Python][라이브러리] random 활용 (0) | 2020.07.13 |
[Python][라이브러리] os, shutil, glob 활용 (0) | 2020.07.13 |
[Python][중급으로넘어가기] 내장함수 활용 2 : id, input, len, list, map, zip (0) | 2020.07.13 |
[Python][중급으로넘어가기] 내장함수 활용 1 : enumerate, filter, isinstance, int (0) | 2020.07.09 |