728x90
DateTime
-
[Python/Module] Datetime코딩/Python 2022. 12. 21. 17:31
Python Dates 날짜, 시간은 파이썬에 포함되지 않음 'datetime' 모듈 사용 import datetime x = datetime.datetime.now() y = datetime.datetime(2020, 5, 17) # object from datetime() class z = datetime.datetime(2018, 6, 1) print(x) # 2022-12-16 15:33:49.473356 print(x.year) # 2022 print(x.strftime("%A")) # Friday print(y) # 2020-05-17 00:00:00 print(x.strftime("%B")) # June Date Output 2022-12-16 15:30:04.284752: year, mon..