• 大小: 1.16KB
    文件类型: .py
    金币: 1
    下载: 0 次
    发布日期: 2021-01-30
  • 语言: Python
  • 标签: Excel  网站  python  

资源简介

运用py2版本

资源截图

代码片段和文件信息

# _*_ coding:utf-8 _*_
import xlwt
import reurllib#正则

#打开网页获取银行信息
def getdata():#字符串格式化
url_list=[]
for i in range(120):
url=“http://furhr.com/?page=%s“%i
#print url
#url=‘http://furhr.com/?page={}‘.format(2)##  两者一样
try:
html=urllib.urlopen(url).read()
except Exception as e:
print e
continue
page_list=re.findall(r“\d+\d+(.*?)(.*?)(.*?)“html)
url_list.append(page_list)
return url_list
#print page_list
def excel_wr

评论

共有 条评论