time/datetime

Posted abysschen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了time/datetime相关的知识,希望对你有一定的参考价值。

time.time()

返回当前时间的时间戳

time.localtime()

接收时间戳(1970纪元后经过的浮点秒数)并返回当地时间下的时间元组t

time.strftime()

接收以时间元组,并返回以可读字符串表示的当地时间

time.strptime()

根据fmt的格式把一个时间字符串解析为时间元组

python获取13位时间戳以及时间戳转换

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

import time

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

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

def millisecond_to_time(milli):
    """
    :param milli: 13位时间戳
    :return: 毫秒时间戳转成年月日格式
    """
    return time.strftime(%Y-%m-%d, time.localtime(milli / 1000))

 

以上是关于time/datetime的主要内容,如果未能解决你的问题,请参考以下文章

org.joda.time.DateTime 日期格式

Python常用模块——time&datetime模块

Python中获取当前时间 获取当前时间前几天的代码

自定义模块,time,datetime以及random

python time datetime模块最详尽讲解

time datetime