python-selenium爬虫解决python作业爬取中国大学排名榜单 result = open('data.xls', 'w', encoding='utf-8') result.write('大学名称\t英文名\t大学级别\t所在省市\t大学类型\t总分\t办学层次\n') for m in ...
python3+selenium爬取百度图片 from selenium import webdriver from lxml import etree from urllib import request import time class Baidu_pic(object): def __init__(self,kw): self.kw = kw options = ...