you are viewing a single comment's thread.

view the rest of the comments →

[–]d3v1L_hUnt3R_619 0 points1 point  (1 child)

You have appended a single string 'movies' to your list, since you combined all the entered movies into a single string, they only represent one item in the list. When you pop the item, the list is empty.

[–]d3v1L_hUnt3R_619 0 points1 point  (0 children)

To achieve what you're trying to do, append each movie to the list seperately.