본문 바로가기
Coding/Python

[Python] 파이썬에서 현재 시간, 미래 시간 출력하는 방법 !!

by 포스트it 2022. 12. 29.
반응형

 

[Python] 파이썬에서 현재 시간, 미래 시간 출력하는 방법 !!

 

아래 예시 코드와 파라미터 참조해서 사용하시면 되세요 :)

import datetime

# 현재시간
now = datetime.datetime.now()

# 3달후
future = now + datetime.timedelta(days=90)

# timedelta 파라미터
timedelta(days=0, seconds=0, microseconds=0, milliseconds=0, minutes=0, hours=0, weeks=0)

 

728x90
반응형

댓글