python+selenium小结17:获取表格中指定的列的数据,并保存到文件中
"""获取表格中指定的列的数据,并保存到指定的文件中"""#!/usr/bin/env python # -*- coding:utf-8 -*-import requestsfrom bs4 import BeautifulSoupimport timea_url = 'http://31f.cn/'html = requests.get(a_url)pagesource ...