Home Backend Development Python Tutorial Summary of usage and common methods of datetime module in Python

Summary of usage and common methods of datetime module in Python

Sep 19, 2018 pm 02:56 PM
datetime module python

This article brings you a summary of the usage and common methods of the datetime module in Python. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

The datetime module re-encapsulates the time module to provide more interfaces. The classes provided are:

date, a class representing date

time, a class representing time

datetime, a class representing date and time

timedelta, representing a time interval, that is, the interval between two points in time

tzinfo, information related to time zones

(Objects of these classes are all immutable)

(Classes have class methods, class methods have methods, and methods inherit class methods)

1. Date class

##datetime.date(year, month, day)

Commonly used class methods and attributes:

##date.today()Returns a date object representing the current local time                                                          date.resolutionThe date object represents the smallest unit of date (days)date.fromtimestamp(timestamp)Returns a date object based on the given timestamp

Implementation:

Class method

import datetime
import time
print(datetime.date.max)
print(datetime.date.min)
print(datetime.date.today())
print(datetime.date.resolution)
print(datetime.date.fromtimestamp(time.time()+3600000))      # 给定时间戳的 日期
Copy after login

result

9999-12-31
0001-01-01
2018-09-17
1 day, 0:00:00
2018-10-29
Copy after login

where Commonly used methods and properties:

date.max The maximum value that an object can represent Date (9999-12-31)
date.min The minimum date that the object can represent (0001 -01-01)
The return date is the number of days since 0001-01-01##d.isoweekday()The return date is the day of the week, [1,7], 1 means Monday, 2 means Tuesdayd.isocalendar()Returns a tuple in the format of (year, weekday, isoweekday)d.isoformat()Returns the date string in 'YYYY-MM-DD' formatd.strftime() Custom format string (same as strftime() method of time module)

实现:

方法

print(datetime.date.year)              # <attribute &#39;year&#39; of &#39;datetime.date&#39; objects>
print(datetime.date.today().year)     # 本地时时间的年
print(datetime.date.fromtimestamp(time.time()+3600000).month)   # 给定时间戳的 月
print(datetime.date.today().day)  # 日

print(datetime.date.today().replace(year=2019))
print(datetime.date.today().timetuple())
print(datetime.date.today().toordinal())
print(datetime.date.today().weekday())
print(datetime.date.today().isoweekday())
print(datetime.date.today().isocalendar())
print(datetime.date.today().isoformat())
print(datetime.date.today().strftime(&#39;%Y-%m-%d-%a-%I&#39;))
Copy after login

result

<attribute &#39;year&#39; of &#39;datetime.date&#39; objects>
10
2019-09-17
time.struct_time(tm_year=2018, tm_mon=9, tm_mday=17, tm_hour=0, tm_min=0, tm_sec=0, tm_wday=0, tm_yday=260, tm_isdst=-1)
0
(2018, 38, 1)
2018-09-17
2018-09-17-Mon-12

result
Copy after login

2、time类

其中,time类和time模块各自独立

datetime.time(hour[,minute[,decond[,microsecond[,tzinfo]]]])

常用的类方法与属性:

d.year
d.monthmonth
d.day
##d.replace(year[,month[,day]])Generate and return a new date object, the original date object remains unchanged                                                                                                       #Return the time tuple (time.struct_time) object corresponding to the date
##d.toordinal()
d .weekday()
The return date is the day of the week, [0,6], 0 means Monday, 1 means Tuesday
time.max表示的最大时间
time.min 表示的最小时间
time.resolution时间的最小单位,这里是1微秒

常用的方法与属性:

t.hour
t.minute
t.second
t.microsecond微秒
t.tzinfo时区信息
t.replace()用参数指定替代(时,分,秒,微秒,时区)对象,生成并返回新的对象
t.isoformat()返回'HH:MM:SS'格式字符串
t.strftime()返回自定义格式化字符串

3. Datetime class

is equivalent to combining date and time

datetime.datetime(year,month,day[,hour[,minute[,second[,microsecond[,tzinfo]]]]])

## Commonly used class methods and Properties:

##datetime.maxMaximum datedatetime.minMinimum date##datetime.resolution##datetime.today()datetime.now([tz])datetime.utcnow()datetime.fromtimestamp(timestamp[,tz])datetime.utcfromtimestamp(timestamp)datetime.combine(date, time)datetime.strftime(date_string,format)
The minimum unit of the date represented by the datetime object, 1 microsecond
Return the current local time
Return the current local time Time, if tz is specified, returns the local time in the tz time zone
Returns the current UTC Time
Returns a datetime object based on the given timestamp , if tz is specified, the tz time zone datetime object
according to the timestamp Create a datetime object
Integrate the specified date and time objects For datetime objects
Convert the formatted string to a datetime object

实现:

类方法

import datetime
import time
print(datetime.datetime.resolution)
print(datetime.datetime.today())
print(datetime.datetime.now())
print(datetime.datetime.utcnow())
print(datetime.datetime.fromtimestamp(time.time()))
print(datetime.datetime.utcfromtimestamp(time.time()))
print(datetime.datetime.combine(datetime.date(2019, 3, 5), datetime.time(3, 2, 45)))
print(datetime.datetime.strftime(datetime.date(2019,9,2),&#39;%Y-%m-%d %X&#39;))
Copy after login

result

0:00:00.000001
2018-09-17 20:32:36.868500
2018-09-17 20:32:36.868500
2018-09-17 12:32:36.868500
2018-09-17 20:32:36.868500
2018-09-17 12:32:36.868500
2019-03-05 03:02:45
2019-09-02 00:00:00
Copy after login

其中常用的方法与属性:

##dt.time()Get the time object of dt, tzinfo is none dt.timetz()Get the time object of dt, tzinfo is the same as the tzinfo of datetimedt.replace()Specify parameter replacement (year, month, day, hour, minute, second, subtle , time zone), generate and return a new objectdt.timetuple()Returns the time corresponding to the date and time Tuple (time.struct_time) (excluding tzinfo) dt.utctimetuple()Return UTC time The corresponding time tuple (excluding tzinfo) dt.timestamp()Returns the corresponding dt object Timestampdt.toordinal()The returned date is the first since 0001-01-01 How many days (same as date class)dt.weekday()The day of the week the return date is, [ 1, 7], 1 means Monday (same as date class)dt.isocalendar() Returns a time tuple in the format (year, month, day) (same as date class) ##dt.isoformat()##dt.ctime()

dt.year

dt.month

dt.day

dt.hour

dt.minute

dt.second

dt.microsecondsubtle
dt .tzinfoTime zone information
##dt.date()Get the date object of dt
Return a string in the format of 'YYYY-MM-DD HH:MM:SS'
Equivalent to time.ctime of the time module (time.mktime(d.timetuple()))##dt.strftime ()
Returns the time string in the specified format

实现:

方法

import datetime,time
print(datetime.datetime.today().tzinfo)
print(datetime.datetime.today().date())
print(datetime.datetime.today().time())
print(datetime.datetime.today().timetz())
print(datetime.datetime.today().timetuple())
print(datetime.datetime.today().timestamp())
print(datetime.datetime.today().ctime())
Copy after login

result

None
2018-09-17
20:36:47.560500
20:36:47.560500
time.struct_time(tm_year=2018, tm_mon=9, tm_mday=17, tm_hour=20, tm_min=36, tm_sec=47, tm_wday=0, tm_yday=260, tm_isdst=-1)
1537187807.5605
Mon Sep 17 20:36:47 2018
Copy after login

4、timedelta类

时间加减(代表了两个datetime之间的时间差)

datetime.timedalta(days=0,seconds=0,microseconds=0,milliseconds=0,minutes=0 ,hours=0,weeks=0)

在日期上做天,小时,分钟,秒,毫秒,微秒,周 的时间计算

  • 1毫秒转换为1000微秒

  • 1分钟转换为60秒

  • 1小时转换为3600秒

  • 1周转换为7天

其中,timedelta内部只存储 days,seconds,microseconds

方法与属性:

td.days天(范围[-999999999,999999999])
td.seconds秒(范围[0,86399])
td.microseconds微秒(范围[0,999999])
td.total_seconds()以秒为单位返回该时间差

实现:

方法

m = datetime.datetime.now()
print(m)
l = m + datetime.timedelta(3)
print(l)
n = m + datetime.timedelta(hours=4)
print(n)
span = l-m
print(span)
print(span.total_seconds())
Copy after login

result

2018-09-17 16:38:43.021000
2018-09-20 16:38:43.021000
2018-09-17 20:38:43.021000
3 days, 0:00:00
259200.0
Copy after login

5、tzinfo时区类

 其中,tzinfo是一个抽象类,所以不能直接被实例化

 时间转换需要用datetime和pytz来转换时区

The above is the detailed content of Summary of usage and common methods of datetime module in Python. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Is the conversion speed fast when converting XML to PDF on mobile phone? Is the conversion speed fast when converting XML to PDF on mobile phone? Apr 02, 2025 pm 10:09 PM

The speed of mobile XML to PDF depends on the following factors: the complexity of XML structure. Mobile hardware configuration conversion method (library, algorithm) code quality optimization methods (select efficient libraries, optimize algorithms, cache data, and utilize multi-threading). Overall, there is no absolute answer and it needs to be optimized according to the specific situation.

What is the function of C language sum? What is the function of C language sum? Apr 03, 2025 pm 02:21 PM

There is no built-in sum function in C language, so it needs to be written by yourself. Sum can be achieved by traversing the array and accumulating elements: Loop version: Sum is calculated using for loop and array length. Pointer version: Use pointers to point to array elements, and efficient summing is achieved through self-increment pointers. Dynamically allocate array version: Dynamically allocate arrays and manage memory yourself, ensuring that allocated memory is freed to prevent memory leaks.

How to convert XML files to PDF on your phone? How to convert XML files to PDF on your phone? Apr 02, 2025 pm 10:12 PM

It is impossible to complete XML to PDF conversion directly on your phone with a single application. It is necessary to use cloud services, which can be achieved through two steps: 1. Convert XML to PDF in the cloud, 2. Access or download the converted PDF file on the mobile phone.

Is there any mobile app that can convert XML into PDF? Is there any mobile app that can convert XML into PDF? Apr 02, 2025 pm 08:54 PM

An application that converts XML directly to PDF cannot be found because they are two fundamentally different formats. XML is used to store data, while PDF is used to display documents. To complete the transformation, you can use programming languages ​​and libraries such as Python and ReportLab to parse XML data and generate PDF documents.

How to convert xml into pictures How to convert xml into pictures Apr 03, 2025 am 07:39 AM

XML can be converted to images by using an XSLT converter or image library. XSLT Converter: Use an XSLT processor and stylesheet to convert XML to images. Image Library: Use libraries such as PIL or ImageMagick to create images from XML data, such as drawing shapes and text.

How to control the size of XML converted to images? How to control the size of XML converted to images? Apr 02, 2025 pm 07:24 PM

To generate images through XML, you need to use graph libraries (such as Pillow and JFreeChart) as bridges to generate images based on metadata (size, color) in XML. The key to controlling the size of the image is to adjust the values ​​of the &lt;width&gt; and &lt;height&gt; tags in XML. However, in practical applications, the complexity of XML structure, the fineness of graph drawing, the speed of image generation and memory consumption, and the selection of image formats all have an impact on the generated image size. Therefore, it is necessary to have a deep understanding of XML structure, proficient in the graphics library, and consider factors such as optimization algorithms and image format selection.

How to open xml format How to open xml format Apr 02, 2025 pm 09:00 PM

Use most text editors to open XML files; if you need a more intuitive tree display, you can use an XML editor, such as Oxygen XML Editor or XMLSpy; if you process XML data in a program, you need to use a programming language (such as Python) and XML libraries (such as xml.etree.ElementTree) to parse.

Recommended XML formatting tool Recommended XML formatting tool Apr 02, 2025 pm 09:03 PM

XML formatting tools can type code according to rules to improve readability and understanding. When selecting a tool, pay attention to customization capabilities, handling of special circumstances, performance and ease of use. Commonly used tool types include online tools, IDE plug-ins, and command-line tools.

See all articles