问答详情
源自:3-5 获取维基百科词条信息

运行结果是空

#导入开发包
from urllib.request import urlopen
from bs4 import BeautifulSoup
import re

resp = urlopen("https://zh.wikipedia.org/wiki/Wikipedia:%E9%A6%96%E9%A1%B5").read().decode("utf-8")
soup = BeautifulSoup(resp,"html.parser")
listUrls = soup.findAll("a", href=re.compile("^/wiki/"))
for url in listUrls:
 print(url("href"))


提问者:慕斯卡4218631 2018-06-24 19:54

个回答

  • 慕斯卡4218631
    2018-06-24 20:26:20

    解决了,原来是用错括号了,把[ ]看成()了