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格式与国家/地区打印在同一行。
'''
答案 0 :(得分:0)
只需传入标签列表:
for link in s2.find_all(['a', 'td']):