Home  >  Article  >  Backend Development  >  python获取当前时间对应unix时间戳的方法

python获取当前时间对应unix时间戳的方法

WBOY
WBOYOriginal
2016-06-10 15:12:281077browse

本文实例讲述了python获取当前时间对应unix时间戳的方法。分享给大家供大家参考。具体分析如下:

Unix timestamp:是从1970年1月1日(UTC/GMT的午夜)开始所经过的秒数,不考虑闰秒

import datetime
import time
print time.mktime(datetime.datetime.now().timetuple())

输出为:

1431674373.0

PS:这里再为大家推荐一个本站Unix时间戳转换工具,附带了各种语言下Unix时间戳的操作方法:

Unix时间戳(timestamp)转换工具:http://tools.jb51.net/code/unixtime

希望本文所述对大家的Python程序设计有所帮助。

Statement:
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