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爬取数据教程
原文地址:https://www.cnblogs.com/qilin20/p/12273186.html
时间: 2024-10-19 04:27:30