生成10位时间戳、13位时间戳 时间戳

python生成10位时间戳、13位时间戳 。代码如下:
import timeclass TimeStamps():    # 10位    def get_timestamps_10bits(self):        return int(time.time())    # 13位    def get_timestamps_13bits(self):        return round(time.time()*1000)    def convert_timestamps_with13bits_to_date_string(self, timestamps):        return time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(timestamps/1000))t = TimeStamps()print("10位时间戳=" + str(t.get_timestamps_10bits()))temp = t.get_timestamps_13bits()print("13位时间戳=" + str(temp))print("13位时间戳转为时间=" + t.convert_timestamps_with13bits_to_date_string(temp)) 运行结果如下图:


【生成10位时间戳、13位时间戳 时间戳】

-- 展开阅读全文 --

    推荐阅读