줄기세포

[Python 3.7 / 파이썬마스터 1급] 오늘이 올해의 몇번째 Day인가 본문

Python

[Python 3.7 / 파이썬마스터 1급] 오늘이 올해의 몇번째 Day인가

줄기세포(Stem_Cell) 2023. 6. 24. 01:21

1. time 모듈의 localtime 메소드 활용

>>> from time import localtime
>>> localtime()
time.struct_time(tm_year=2023, tm_mon=6, tm_mday=21, tm_hour=11, tm_min=28, tm_sec=17, tm_wday=2, tm_yday=172, tm_isdst=0)
>>> now = localtime()
>>> now.tm_yday
172

 

2. time과 datetime 모듈 활용

import time
import datetime

today = time.localtime()
total_date = datetime.date(today[0], today[1], today[2]) - datetime.date(today[0], 1, 1)
total_date.days+1

 

Comments