파이썬으로 달력 만들기
1. 코드 def isLeapYear(year): # 윤년이면 True, 아니면 False 를 출력하는 함수. return year % 4 == 0 and year % 100 != 0 or year % 400 == 0 def lastDay(year, month): # 마지막 날짜를 리턴하는 함수 m = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31] # 윤년이면 29일로 수정한다. # if isLeapYear(year): # m[1] = 29 m[1] = 29 if isLeapYear(year) else 28 # isLeapYear(year)이 T이면 m[1]은 29이다. return m[month - 1] def totalDay(year, month, day): ..
2022.12.06