码迷,mamicode.com
首页 > 编程语言 > 详细

python爬取网页数据

时间:2020-02-07 16:45:36      阅读:54      评论:0      收藏:0      [点我收藏+]

标签: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爬取数据教程

 

python爬取网页数据

标签:strftime   coding   utf-8   日期   col   font   教程   str   时间戳   

原文地址:https://www.cnblogs.com/qilin20/p/12273186.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!