In Python programming, we often need to process and operate time. The standard library in Python provides a time module for handling time-related operations. This article will introduce the time module in detail.
Introduction to the time module
The time module is part of the Python standard library and provides some functions and classes for processing time. This module mainly includes the following aspects:
Time acquisition: Get the current time and sleep waiting execution time.
Time format conversion: Convert time to string or format string to time.
Time calculation: Calculate the difference between two times.
Time operation: perform operations such as addition, subtraction, comparison, and judgment on time.
Time acquisition
The time module uses the time() function to obtain the timestamp of the current time. The following is a simple example:
import time
now = time.time()
print("当前时间戳:", now)
Copy after login
Output:
当前时间戳: 1563431484.0177832
Copy after login
In order to facilitate us to view the time, the time module also provides an asctime() function to convert the timestamp to represent the local A string of times. The following is an example:
import time
now = time.time()
localtime = time.localtime(now)
asctime = time.asctime(localtime)
print("当前时间:", asctime)
Copy after login
Output:
当前时间: Mon Jul 18 14:04:44 2019
Copy after login
In addition, the sleep() function can cause the program to pause for a specified time (in seconds), allowing the program to wait for a period of time before executing. The following is an example of using the sleep() function:
import time
print("程序开始执行...")
time.sleep(5)
print("程序执行结束。")
Copy after login
When executing the above code, the program will pause for 5 seconds and then output "Program execution ends."
Time format conversion
In Python programming, we often need to convert timestamps into human-readable time formats, or vice versa. The time module provides two main functions: strftime() and strptime(), which are used for time format conversion.
a. strftime()
The strftime() function is a function used to format time into a string. The following is an example:
In the above code, we first convert the time t into the timestamp localtime, and then use the strftime() function to format the localtime as needed String form.
The parameters of the strftime() function include format strings and time tuples, where the format string is a template for converting time tuples into strings. Commonly used formatting characters are as follows:
Formatting characters
Meaning
%a
Abbreviation of day of the week
%A
Full name of day of the week
%b
Abbreviation of month
%B
Full name of month
%c
Local corresponding time Representation format
%d
The day of the month
##%H
in 24 hours Express the number of hours in 12-hour format
%I
Express the number of hours in 12-hour format
%j
The day of the year
%m
The month represented by the number (01~12)
%M
Minutes
%p
AM or PM
%S
Seconds
%U
The number of weeks in the year, Sunday is the beginning of the week
%w
Day of the week, 0 (Sunday) ~ 6 (Saturday)
%W
The number of weeks in the year, Monday is The beginning of the week
The above is the detailed content of Detailed explanation of time module in Python. For more information, please follow other related articles on the PHP Chinese 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