날짜 및 시간 객체는 날짜(년, 월, 일)와 시간(시, 분, 초)의 이중 속성을 갖는 인스턴스를 나타냅니다. 날짜 및 시간 객체의 유형은 datetime.datetime입니다
날짜 및 시간 객체의 일반적으로 사용되는 속성은 연, 월, 일, 시, 분, 초 및 마이크로초입니다.
날짜 및 시간 객체는 한 번에 생성할 수 있습니다. 지정된 시간 또는 현재 시간을 가져와
날짜 및 시간 지정된 시간에 객체가 생성될 때 위치별로 매개변수를 전달하거나 키워드로 매개변수를 전달하여 생성할 수 있습니다. include datetime.datetime(), datetime.datetime.now(), datetime.datetime.today( ), datetime.datetime.utcnow()
datetime.datetime()을 통해 datetime 객체가 생성될 때의 매개변수는 다음과 같습니다. year,month,day,hour,min,second,microsecond
datetime 객체가 전달됩니다. datetime.datetime.now() 함수는 매개변수를 생성하지 않습니다.
Datetime 객체는 datetime.datetime.today에 의해 생성됩니다. () 함수입니다.
Datetime 객체는 datetime.datetime.utcnow() 함수에 의해 생성됩니다. 필수 매개변수
datetime.datetime()을 통해 날짜 및 시간 객체가 생성됩니다. 연, 월, 일 세 개 이상의 매개변수가 포함되어야 합니다
datetime.datetime()을 통해 날짜 및 시간 객체가 생성될 때 매개변수 범위는 다음과 같습니다
1 | 년 | 1~9999 |
---|---|---|
2 | 월 | 1~12 |
3 | 일 | 0~23 |
4 | 시 | 0~23 |
5 | 분 | 0~59 |
6 | 초 | 0~59 |
7 | 마이크로초 | 1~999999 |
2. 날짜 및 시간 객체 생성2.1. datetime.datetime.utcnow()를 통해 생성datetime_zero = datetime.datetime.utcnow() 로그인 후 복사 2.2 datetime.datetime.today() 함수를 통해 생성datetime_first = datetime.datetime.today() 로그인 후 복사 2.3. )datetime_second = datetime.datetime.now() 로그인 후 복사 2.4.datetime.datetime()으로 생성
datetime_three = datetime.datetime(year=1, month=1, day=1, hour=0, minute=0, second=0, microsecond=1) datetime_four = datetime.datetime(year=9999, month=12, day=31, hour=23, minute=59, second=59, microsecond=999999) datetime_five = datetime.datetime(9999, 12, 31, 23, 59, 59, 999999) 로그인 후 복사 내에 있어야 합니다. 2.5 생성된 개체 보기print(datetime_zero, type(datetime_zero)) # 2022-07-09 18:12:43.486469 <class 'datetime.datetime'> print(datetime_first, type(datetime_first)) # 2022-07-09 18:12:43.486469 <class 'datetime.datetime'> print(datetime_second, type(datetime_second)) # 2022-07-09 18:12:43.486469 <class 'datetime.datetime'> print(datetime_three, type(datetime_three)) # 0001-01-01 00:00:00.000001 <class 'datetime.datetime'> print(datetime_four, type(datetime_four)) # 9999-12-31 23:59:59.999999 <class 'datetime.datetime'> print(datetime_five, type(datetime_five)) # 9999-12-31 23:59:59.999999 <class 'datetime.datetime'> 로그인 후 복사 2.6. 그리고 datetime이 처리할 수 있는 시간 객체print(datetime.datetime.min) # 0001-01-01 00:00:00 print(datetime.datetime.max) # 9999-12-31 23:59:59.999999 로그인 후 복사 3. Date 이벤트 객체datetime_first = datetime.datetime.today() """# 从日期时间对象中获取日期属性【年-月-日】""" new_time = datetime.datetime.date(datetime_first) print(new_time) print(type(new_time)) """# 从日期时间对象中获取时间属性【时:分:秒:微秒】""" new_time = datetime.datetime.time(datetime_first) print(new_time) print(type(new_time)) """# 从日期时间对象中获取年份""" datetime_year = datetime_first.year print(datetime_year, type(datetime_year)) # 2022 <class 'int'> """# 从日期时间对象中获取月份""" datetime_month = datetime_first.month print(datetime_month, type(datetime_month)) # 7 <class 'int'> """# 从日期时间对象中获取天""" datetime_day = datetime_first.day print(datetime_day, type(datetime_day)) # 10 <class 'int'> """# 从日期时间对象中获取小时""" datetime_hour = datetime_first.hour print(datetime_hour, type(datetime_hour)) # 18 <class 'int'> """# 从日期时间对象中获取分钟""" datetime_minute = datetime_first.minute print(datetime_minute, type(datetime_minute)) # 56 <class 'int'> """# 从日期时间对象中获取秒数""" datetime_second = datetime_first.second print(datetime_second, type(datetime_second)) # 16 <class 'int'> """# 从日期时间对象中获取微秒""" datetime_microsecond = datetime_first.microsecond print(datetime_microsecond, type(datetime_microsecond)) # 735264 <class 'int'> 로그인 후 복사
4. 날짜 및 시간 개체는 시간 튜플로 변환됩니다.
UTCDateTime = datetime.datetime(year=2022, month=7, day=10, hour=19, minute=14, second=27, microsecond=1235) datetime_UTCTimeTuple = datetime.datetime.utctimetuple(UTCDateTime) print(datetime_UTCTimeTuple, type(datetime_UTCTimeTuple)) # 类型为:<class 'time.struct_time'> 로그인 후 복사
5. 날짜 및 시간 개체를 AD 달력에서 시작하는 일 수로 변환
예: Sat Jul 9 19:14:27 2022(2022년 7월 9일 일요일)
|
위 내용은 Python에서 datetime 모듈을 사용하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!