python 에서 이전 달을 구하는 방법은
현재 달의 1일 - 1일 하는 형태로 이전 달을 구할 수 있다.
from datetime import date, timedelta
today = date.today()
month_ago = today.replace(day = 1) - timedelta(days = 1)
year = str(month_ago.year)
month = str(month_ago.month)
반응형
'Python > Python' 카테고리의 다른 글
Python - 특정 문자가(정규식이) 문자열에 포함되어 있는지 검사 (java의 String.contains) (0) | 2019.04.20 |
---|---|
Python - Beautiful Soup 사용법 (0) | 2019.04.17 |
Python - String 함수 (0) | 2018.11.12 |
Python GUI Frameworks (0) | 2014.02.07 |
Python - Custom Exception (사용자 정의 Exception) (0) | 2014.01.18 |