datetime과 시간대
HTML 삽입 미리보기할 수 없는 소스 DateTime datetime은 날짜와 시간 정보를 함께 저장하는 클래스이다. 현재시간을 나타내는 datetime.now() 메서드를 통해 알아보자. from datetime import datetime ct = datetime.now() print(ct) # Output # 2023-01-15 13:27:40.177895 날짜 정보와 시간 정보를 접근할 수 있는 속성을 가진다. 날짜 정보는 year, month, day 시간 정보는 time, second, microsecond이다. print(ct.year, ct.month, ct.day) # 2023 1 15 print(ct.minute, ct.second, ct.microsecond) # 27 40 1778..