摘要:
题目:暂停一秒输出 程序分析:使用 time 模块的 sleep() 函数。 阅读全文
摘要:
原文:https://baijiahao.baidu.com/s?id=1616207956596122967&wfr=spider&for=pc 原文:https://baijiahao.baidu.com/s?id=1616207956596122967&wfr=spider&for=pc 科技 阅读全文
摘要:
import re from urllib.request import urlopen def getPage(url): response = urlopen(url) return response.read().decode('utf-8') def parsePage(s): ret = re.findall( '.*?.*?(?P\d+).... 阅读全文
摘要:
re模块下的常用方法 注意: 1 findall的优先级查询: 2 split的优先级查询 综合练习与扩展 1、匹配标签 import re ret = re.search("<(?P<tag_name>\w+)>\w+</(?P=tag_name)>","<h1>hello</h1>") #还可以 阅读全文