运行此代码时,我从here,nothing happens获得了
import requests
import bs4
res = requests.get('https://en.wikipedia.org/wiki/Machine_learning')
soup = bs4.BeautifulSoup(res.text, 'lxml')
foo = soup.select('.mw-headline')
for i in soup.select('.mw-header'):
print(i.text)
已安装所有内容(lxml,请求,bs4)
如果我被困在这里,我将无法继续他的教程。