Today1 [python] 날짜 (datetime) 안녕하세요. TDR입니다.오늘은 간략하게 python에서 시간과 날짜를 다루는 법을 정리해 보겠습니다.import datetime as dtnow_date = dt.datetime.now()print(f'now_date : {now_date}')print(f'now_date.year : {now_date.year}')print(f'now_date.month : {now_date.month}')print(f'now_date.day : {now_date.day}')print(f'now_date.hour : {now_date.hour}')print(f'now_date.minute : {now_date.minute}')print(f'now_date.second : {now_date.second}')print(f.. 2024. 5. 13. 이전 1 다음