标签:strftime coding utf-8 日期 col font 教程 str 时间戳
python时间戳
将时间戳转为日期
#!/usr/bin/python # -*- coding: UTF-8 -*- # 引入time模块 import time #时间戳 timeStamp = 1581004800 timeArray = time.localtime(timeStamp) #转为年-月-日形式 otherStyleTime = time.strftime("%Y-%m-%d ", timeArray) print(otherStyleTime)
python爬取数据教程
标签:strftime coding utf-8 日期 col font 教程 str 时间戳
原文地址:https://www.cnblogs.com/qilin20/p/12273186.html