标签:second cal color lis 年月日 def 精确 bsp 根据
返回当前时间的时间戳
接收时间戳(1970纪元后经过的浮点秒数)并返回当地时间下的时间元组t
接收以时间元组,并返回以可读字符串表示的当地时间
根据fmt的格式把一个时间字符串解析为时间元组
# -*- 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))
标签:second cal color lis 年月日 def 精确 bsp 根据
原文地址:https://www.cnblogs.com/abysschen/p/12748783.html