从时间戳开始的PYTHON分钟

时间:2013-11-17 14:10:26

标签: python timestamp python-3.3

我只需要一个十进制系统来计算时间的精确度。

所以我需要一个函数来返回时间戳的分钟数(对于时间戳,我的意思是指1970年1月1日)。

它必须非常简单,相反我从25分钟开始搜索!

2 个答案:

答案 0 :(得分:2)

import time
print(int(time.time() / 60))

23078330

答案 1 :(得分:0)

import datetime as DT
def minutes(timestamp=None):
    """ Return integral number of minutes from the Epoch, 1970-1-1 """
    if timestamp is None:
        now = DT.datetime.now()
        timestamp = now.timestamp()
    return timestamp//60

print(minutes())