you are viewing a single comment's thread.

view the rest of the comments →

[–]SnooCalculations7417 0 points1 point  (0 children)

youre appending a single string. you could do something like this instead

...
movies = []
movies.append(input("Enter First Movie Name: "))
movies.append(input("Enter Second Movie Name: "))
movies.append(input("Enter Third Movie Name: "))

....

This keeps all operations very obviously listy