SeouliteLab

[Python/파이썬] 현재 날짜, 시간 가져오는 방법 본문

프로그래밍

[Python/파이썬] 현재 날짜, 시간 가져오는 방법

Seoulite Lab 2024. 3. 6. 09:34

파이썬에서 현재 날짜와 시간을 가져오는 것은 자주 사용되는 작업입니다. 이번 글에서는 파이썬에서 현재 날짜와 시간을 가져오는 여러 가지 방법에 대해 알아보겠습니다. 각 방법을 예제와 함께 자세히 설명하겠습니다.

1. datetime 모듈 사용하기

datetime 모듈은 파이썬에서 날짜와 시간을 다루는 데 사용되는 표준 모듈입니다. datetime 모듈을 사용하여 현재 날짜와 시간을 가져올 수 있습니다.

import datetime

current_datetime = datetime.datetime.now()
print("현재 날짜와 시간:", current_datetime)

2. time 모듈 사용하기

time 모듈은 시간과 관련된 기능을 제공합니다. time 모듈을 사용하여 현재 시간을 가져올 수 있습니다.

import time

current_time = time.localtime()
print("현재 시간:", current_time)

3. datetime 모듈과 strftime() 함수 사용하기

strftime() 함수를 사용하여 datetime 객체를 원하는 형식으로 포맷할 수 있습니다. 이를 통해 원하는 형식의 날짜와 시간을 가져올 수 있습니다.

import datetime

current_datetime = datetime.datetime.now()
formatted_datetime = current_datetime.strftime("%Y-%m-%d %H:%M:%S")
print("현재 날짜와 시간(포맷):", formatted_datetime)