I have a list called URL_list. I looks like this: [item-1.html', 'item-2.html', 'item-3.html']
I want use a for loop to join the base URL "http://www.examplesite.com/" to each partial URL in my list.
Here's what I tried, but it's not working:
full_URL = [ ]
for base in URL_list:
URL += "http://www.examplesite.com/"
print(full_URL)
What should I do to attach the beginning of the URL, "http://www.examplesite.com/", with each item in my list to get a list of the full URLs?