# -*- coding: utf-8 -*-
import requests, bs4
resp = requests.get('http://www.ruliweb.com/')
resp.raise_for_status()
resp.encoding='UTF-8'
html = resp.text
bs = bs4.BeautifulSoup(html, 'html.parser')
tags = bs.select('div.hotdeal_etc div.widget_bottom a') # ruliweb hotdeal board
title = tags[0].getText().strip()
print(title)
python 3
我只能在此代码中获得一个
但是列表中有更多元素
所以我想从标签中的元素中获取所有文本[]
我试图更改'tags [0]'->'tags [0:],但这不起作用
如何从列表中的元素中获取所有文本?