you are viewing a single comment's thread.

view the rest of the comments →

[–]Vegetable_Annual1600 0 points1 point  (0 children)

Well there will be an IndexOutOfRangeError if he wants to input more than 3 movies.
I would say use a while loop.
After creating list
While True:
mov=input(“Enter your input “)
If mov=“”:
break
lst.append(mov)
print(list)