Python에서 datetime 모듈을 사용하는 방법
1. 날짜 및 시간 객체
-
날짜 및 시간 객체는 날짜(년, 월, 일)와 시간(시, 분, 초)의 이중 속성을 갖는 인스턴스를 나타냅니다. 날짜 및 시간 객체의 유형은 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

핫 AI 도구

Undresser.AI Undress
사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover
사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool
무료로 이미지를 벗다

Clothoff.io
AI 옷 제거제

AI Hentai Generator
AI Hentai를 무료로 생성하십시오.

인기 기사

뜨거운 도구

메모장++7.3.1
사용하기 쉬운 무료 코드 편집기

SublimeText3 중국어 버전
중국어 버전, 사용하기 매우 쉽습니다.

스튜디오 13.0.1 보내기
강력한 PHP 통합 개발 환경

드림위버 CS6
시각적 웹 개발 도구

SublimeText3 Mac 버전
신 수준의 코드 편집 소프트웨어(SublimeText3)

뜨거운 주제











Linux 시스템과 함께 제공되는 Python 통역사를 제거하는 문제와 관련하여 많은 Linux 배포판이 설치 될 때 Python 통역사를 사전 설치하고 패키지 관리자를 사용하지 않습니다 ...

Pylance 유형 감지 문제 솔루션 Python 프로그래밍에서 사용자 정의 데코레이터를 사용할 때 Decorator는 행을 추가하는 데 사용할 수있는 강력한 도구입니다 ...

Pythonasyncio에 대해 ...

Linux 터미널에서 Python 사용 ...

Python의 HTTPX 라이브러리를 사용하여 HTTP/2를 보내십시오 ...

Python 3.6에 피클 파일 로딩 3.6 환경 오류 : ModulenotFounderRor : nomodulename ...

파이썬 비동기 라이브러리 사이의 호환성 문제 파이썬에서 비동기 프로그래밍은 동시성과 I/O의 프로세스가되었습니다 ...

Python 3.6에 피클 파일로드 3.6 환경 보고서 오류 : modulenotfounderror : nomodulename ...
