使用pandas的read_html方法可以快速获取网页中所有table的数据。 import pandas as pd url="https://gs.amac.org.cn/amac-infodisc/res/pof/fund/351000129120.html" tables = pd.read_html(url) print("table数量:",len(tables)) tables 参考资料: https://www.codenong.com/cs105369944/