"이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다."


파이썬에서 현재 날짜 가져오기
728x90

Python에서 datetime을 이용하여 현재 날짜 가져오기

 


현재 날짜 가져오기

현재 날짜는 datetime 모듈로 가져올 수 있습니다.

from datetime import datetime

datetime.today()

 

위 코드를 실행하면 현재 날짜와 시간을 가져옵니다.

 

연도나 월을 가져오려면 아래 코드를 사용하면 됩니다.

from datetime import datetime

datetime.today().year	# 현재 연도
datetime.today().month	# 현재 월
datetime.today().day	# 현재 일
datetime.today().hour	# 현재 시간
datetime.today().minute	# 현재 분
datetime.today().second	# 현재 초

 


현재 날짜를 원하는 포멧으로 출력하기

현재 날짜를 가져와서 원하는 포멧으로 출력하기 위해서는 strftime 함수를 이용합니다.

datetime.today().strftime("%Y%m%d %H%M%S")
datetime.today().strftime("%Y%m%d %H:%M:%S")

 

728x90
728x90
LIST