如何使用find_all查找两个标签?

时间:2015-09-18 22:57:12

标签: python beautifulsoup findall

from bs4 import BeautifulSoup
f2=open('gdpbycount.html','r')
s2=BeautifulSoup(f2)
for link in s2.find_all('a'):
    ltxt=link.text
    print '{\n Country: "'+ ltxt +'"\n'
现在我想寻找另一个标签'并获取它的文本,并以json格式与国家/地区打印在同一行。 '''

1 个答案:

答案 0 :(得分:0)

只需传入标签列表:

for link in s2.find_all(['a', 'td']):