But this is completely basic Python. You’re getting a list, and you want to output it one URL per line.
for url in urls:
print url
1
solved Clean URL with BeautifulSoup
But this is completely basic Python. You’re getting a list, and you want to output it one URL per line.
for url in urls:
print url
1
solved Clean URL with BeautifulSoup