当前位置:   article > 正文

【python 时间戳】python获取13位时间戳以及时间戳转换_python13位数字转日期函数

python13位数字转日期函数

无意中发现了一个巨牛的人工智能教程,忍不住分享一下给大家。教程不仅是零基础,通俗易懂,而且非常风趣幽默,像看小说一样!觉得太牛了,所以分享给大家。点这里可以跳转到教程。人工智能教程

java默认精度是毫秒级别的,生成的时间戳是13位,而python默认是10位的,精度是秒。那么python是如何生成13位时间戳,以及时间戳如何转换为日期呢,下面将一一解答。我写了四个函数。分别对应四个功能。
函数1 get_second():python获取精确到秒时间戳,10位
函数2 get_millisecond():python获取精确毫秒时间戳,13位
函数3 get_delta(t1,t2):两个时间戳相减,返回秒数
函数4 millisecond_to_time(millis):13位时间戳转换为日期格式字符串

# -*- coding:utf-8 -*-

import time

def get_second():
    """
    :return: 获取精确到秒时间戳,10位
    """
    return int(time.time())

def get_millisecond():
    """
    :return: 获取精确毫秒时间戳,13位
    """
    millis = int(round(time.time() * 1000))
    return millis


def get_delta(t1,t2):
    """
    :param t1: 13位时间戳
    :param t2: 13位时间戳
    :return: 两个时间戳相减,返回秒数
    """
    res=int((t2 - t1)/1000)
    return res


def millisecond_to_time(millis):
    """13位时间戳转换为日期格式字符串"""
    return time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(millis/1000))





if __name__ == "__main__":
    print(get_second())
    print(time.time())
    time1=get_millisecond()
    print(time1)


    k1=1567412375458
    k2=1567412395853

    now = int(round(time.time() * 1000))
    print(now)
    t1 = time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(k1/1000))
    t2=time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(k2/1000))
    print(t1)
    print(t2)
    print(get_delta(k1,k2))
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53

运行结果:

1567426313
1567426313.5832553
1567426313583
1567426313583
2019-09-02 16:19:35
2019-09-02 16:19:55
20

Process finished with exit code 0
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/72976
推荐阅读
相关标签
  

闽ICP备14008679号