优草派  >   Python

python怎么获取时间戳?

李嘉琪            来源:优草派

Python中获取时间戳的几种方法:

python怎么获取时间戳?

1. 使用time库中的time()函数

2. 使用datetime库中的now()函数,再转换成时间戳

3. 使用calendar库中的timegm()函数

下面分别对这三种方法进行详细讲解:

1. 使用time库中的time()函数

time()函数可以返回从1970年1月1日00:00:00至今的秒数。例如:

import time

current_time = time.time()

print(current_time)

输出结果为:

1567089476.2750235

其中,1567089476表示距离1970年1月1日00:00:00的秒数,2750235表示小数位。如果只需要整数位,则可以使用int()函数进行转换。

2. 使用datetime库中的now()函数,再转换成时间戳

datetime.now()函数可以返回当前时间,再使用timestamp()函数将时间转换成时间戳。例如:

import datetime

current_time = datetime.datetime.now().timestamp()

print(current_time)

输出结果与上述相同:

1567089476.2750235

3. 使用calendar库中的timegm()函数

calendar库中的timegm()函数与time库中的time()函数类似,也是返回距离1970年1月1日00:00:00的秒数。例如:

import calendar

current_time = calendar.timegm(time.gmtime())

print(current_time)

输出结果与上述相同:

1567089476

关于三种方法的比较:

使用time()函数比较简单,直接调用即可。使用datetime库中的now()函数较为灵活,可以获取指定的时间,并且可以进行时间运算等操作。使用calendar库较为麻烦,需要调用gmtime()等其他函数进行时间格式的转换,但同时也更加灵活,可以获取其他时区的时间等。

综上所述,Python中获取时间戳的方法有多种,根据实际需要选择合适的方法即可。

【原创声明】凡注明“来源:优草派”的文章,系本站原创,任何单位或个人未经本站书面授权不得转载、链接、转贴或以其他方式复制发表。否则,本站将依法追究其法律责任。
TOP 10
  • 周排行
  • 月排行