without haste but without rest

[python] 달의 마지막 일자 구하기 본문

ProgrammingLanguage/Python

[python] 달의 마지막 일자 구하기

JinungKim 2021. 2. 16. 13:25
import calendar

last_day = calendar.monthrange(year, month)[1]
Comments