I have an HTML document from which I scrape some data using
data=content.find_all("a", {"class": "result-title"})
Then data as below:
[ < a class = "result-title hover_feedback zred bold ln24 fontsize0 "
data - result - type = "ResCard_Name"
href = "https://www.zomato.com/bangalore/flechazo-marathahalli"
title = "flechazo Restaurant, Marathahalli" > Flechazo <
/a>]
Now I wanted extract from data is
01. https://www.zomato.com/bangalore/flechazo-marathahalli
02. Flechazo
Any help would be appreciated.