2018年12月18日

摘要: Sub LoadImage() Dim HLK As Hyperlink, Rng As Range For Each HLK In ActiveSheet.Hyperlinks '循环活动工作表中的各个超链接 If UCase(HLK.Address) Like "*.JPG" Or UCase(HLK.Address) Like "*.JPEG" Or UCase(HL... 阅读全文

posted @ 2018-12-18 14:31 飞行的蟒蛇 阅读(3450) 评论(0) 推荐(0) 编辑

摘要: import requestsimport redef get_url(url): resp = requests.get(url,headers=headers) html=resp.content data=str(html,'gbk') #html_doc=html.decode("utf-8","ignore") link_1=".*?" lin... 阅读全文

posted @ 2018-12-18 13:03 飞行的蟒蛇 阅读(243) 评论(0) 推荐(0) 编辑

摘要: 一、time模块 %y 两位数的年份表示(00-99) %Y 四位数的年份表示(000-9999) %m 月份(01-12) %d 月内中的一天(0-31) %H 24小时制小时数(0-23) %I 12小时制小时数(01-12) %M 分钟数(00=59) %S 秒(00-59) %a 本地简化星 阅读全文

posted @ 2018-12-18 09:04 飞行的蟒蛇 阅读(148) 评论(0) 推荐(0) 编辑