更多python、Linux、网络安全学习内容,可移步:www.oldboyedu.com或关注\"老男孩Linux\"公众号
分类: Python/Ruby
2024-06-14 14:27:17
在Python编程中,处理日期和时间是一项常见的任务,而且Python提供了多种时间模块,那么Python如何获取当前时间?以下是具体内容介绍。
Python提供了多种方法来获取当前时间:
1、time模块
time模块提供以下函数:
time.time():返回自1970年1月1日午夜以来的秒数。
time.localtime():返回当前时间的本地时间元组。
time.gmtime():返回当前时间的格林尼治时间元组。
示例:
import time
#当前时间戳(以秒为单位)
timestamp=time.time()
#当前本地时间元组
local_time=time.localtime()
#当前格林尼治时间元组
gm_time=time.gmtime()
2、datetime模块
datetime模块提供以下类:
datetime.datetime:表示日期和时间的对象。
datetime.date:表示日期的对象。
datetime.time:表示时间的对象。
示例:
import datetime
#当前日期和时间
now=datetime.datetime.now()
#当前日期
today=datetime.date.today()
#当前时间
current_time=datetime.time()
3、timeit模块
timeit模块提供了一个计时器,可以通过以下方法获取当前时间:
timeit.default_timer():返回当前时间戳。
示例:
import timeit
#当前时间戳
timestamp=timeit.default_timer()