Python -- 时间戳转换为标准日期时间代码运行结果
代码# -*- coding: utf-8 -*-# @Author : WangTuo# @Time : 2021/4/22 9:14import time# 时间戳timestamp = time.time()print(timestamp)# 根据 %Y-%m-%d %H:%M.%S格式 输出日期date = time.strftime('%Y-%m-%d %H:%M.%S', time.localtime(timestamp))print(date)运行结果