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월의 마지막 날입니다.

 

 

 

 

+ Recent posts