This is my first question on stack exchange! I have tried the answer listed here: Appending the same string to a list of strings in Python
edit: Turns out this is what my code really looked like:
working_domains = [['google.com', 'yahoo.com', 'msn.com']]
url_http = []
http = 'http://'
url_http = [http + line for line in working_domains]
print url_http
TypeError: cannot concatenate 'str' and 'list' object
I'm sure i am missing something very simple here! please help! thanks in advance!