When I run my crawler it fetches the results as list. However, I expected to have that in regular string being displayed in two columns. Thanks for any suggestion.
import requests
from lxml import html
url="http://www.wiseowl.co.uk/videos/"
def Startpoint(links):
response = requests.get(links)
tree = html.fromstring(response.text)
Title= tree.xpath("//p[@class='woVideoListDefaultSeriesTitle']/a/text()")
Link=tree.xpath("//p[@class='woVideoListDefaultSeriesTitle']/a/@href")
print(Title,Link)
Startpoint(url)