0
我希望能夠抓住「鏈接到谷歌」,並從該打印:定位和打印HTML超鏈接名稱
<a href= "http://www.google.com">link to google</a>
這種自下而上代碼能夠抓住的聯繫,但我不知道如何讓它抓住正常的文字。
def handle_starttag(self, tag, attrs):
if tag == 'a':
self.anchor = True
if self.anchor == True:
for attr in attrs:
if attr[0] == 'href':
print(attr[1])