合并下列代码info = soup.select(f'#main > div:nth-child({i}) > ul') info1 = soup.select('#main > div:nth-child({i}) > h2')
时间: 2024-03-20 12:38:52 浏览: 88
Python使用Beautiful Soup爬取豆瓣音乐排行榜过程解析
5星 · 资源好评率100%
将它们合并成一个代码行,并且使用 f-string 进行字符串格式化,如下所示:
```
info = soup.select(f"#main > div:nth-child({i}) > ul")
info1 = soup.select(f"#main > div:nth-child({i}) > h2")
```
这样可以使代码更加简洁和易读。
阅读全文