movie_list=[]
movie_list.extend(movieid[1])
print movieid
print movie_list
I got the following output:
(832871, 'Espas en Hollywood')
['E', 's', 'p', 'a', 's', ' ', 'e', 'n', ' ', 'H', 'o', 'l', 'l', 'y', 'w', 'o', 'o', 'd']
Why did I get a character list as a result of append? What should I do if I 'd like to attach the string 'Espas en Hollywood' to movie_list?
i.e desired output:
['Espas en Hollywood']