Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- jQuery
- 수수료
- python
- 특약
- 뇌출혈
- 교보생명
- 변환
- Vue.js
- 코딩
- 인출수수료
- PythonProgramming
- 교보
- 리스트
- 보험
- 심장질환
- 프로그래밍
- 자바스크립트
- 중도인출
- 파이썬
- 웹개발
- Java
- javascript
- 가입
- 급성심근경색증
- 문자열
- 보험료
- 납입
- 추가납입
- 사망
- 프론트엔드
Archives
- Today
- Total
SeouliteLab
[Python/파이썬] 특정 월의 시작 날짜, 마지막 날짜 얻기 본문
Python을 사용하여 특정 월의 시작 날짜와 마지막 날짜를 얻는 방법에 대해 알아보겠습니다. 특정 월의 시작 날짜는 그 달의 첫 번째 날이고, 마지막 날짜는 그 달의 마지막 날입니다. 아래 예제를 통해 각각의 방법을 살펴보겠습니다.
1. calendar 모듈 사용
Python의 calendar
모듈을 사용하여 특정 월의 시작 날짜와 마지막 날짜를 얻을 수 있습니다. 먼저, calendar.monthrange(year, month)
함수를 사용하여 특정 월의 첫 번째 날과 마지막 날의 요일과 날짜 수를 얻습니다. 그런 다음, 이 정보를 사용하여 시작 날짜와 마지막 날짜를 계산합니다.
import calendar
def get_month_dates(year, month):
# 특정 월의 첫 번째 날과 마지막 날의 요일과 날짜 수 구하기
first_day, last_day = calendar.monthrange(year, month)
# 시작 날짜는 첫 번째 날
start_date = 1
# 마지막 날짜는 마지막 날
end_date = last_day
return start_date, end_date
# 특정 연도와 월 지정
year = 2024
month = 3
start_date, end_date = get_month_dates(year, month)
print(f"Start Date: {year}-{month}-{start_date}")
print(f"End Date: {year}-{month}-{end_date}")
2. datetime 모듈 사용
datetime
모듈을 사용하여 특정 월의 시작 날짜와 마지막 날짜를 구할 수도 있습니다. 먼저, 특정 월의 첫 번째 날과 마지막 날을 생성하고, 이를 사용하여 시작 날짜와 마지막 날짜를 얻습니다.
from datetime import datetime, timedelta
def get_month_dates(year, month):
# 첫 번째 날 생성
first_day = datetime(year, month, 1)
# 마지막 날 생성
if month == 12:
last_day = datetime(year + 1, 1, 1) - timedelta(days=1)
else:
last_day = datetime(year, month + 1, 1) - timedelta(days=1)
return first_day, last_day
# 특정 연도와 월 지정
year = 2024
month = 3
start_date, end_date = get_month_dates(year, month)
print(f"Start Date: {start_date.strftime('%Y-%m-%d')}")
print(f"End Date: {end_date.strftime('%Y-%m-%d')}")
'프로그래밍' 카테고리의 다른 글
[Python/파이썬] 함수에서 두 개 이상의 값 리턴 (0) | 2024.03.04 |
---|---|
[Python/파이썬] Selenium에서 웹페이지의 제목 가져오는 방법 (0) | 2024.03.04 |
[Python/파이썬] XML 파싱, 태그 또는 요소 별로 읽기 (0) | 2024.03.04 |
[Python/파이썬] XML 생성 및 파일 저장 (0) | 2024.03.04 |
[Python/파이썬] 어떤 날짜가 주말인지, 평일인지 확인 (0) | 2024.03.04 |