python-pandas提取网页内tables(表格类型)数据
比如,下面网页里大学排行的数据
分析这个页面,表格内的数据是包裹在tables里的
这样就可以使用pandas对数据进行提取并且导出成csv文件,具体代码很简单
import pandas as pd html='http://www.jdxzz.com/paiming/2022/0906/9664835.html' tables=pd.read_html(html) tables[0].to_csv(r'世界大学排行榜.csv',index=False,header=False)
执行结果