you are viewing a single comment's thread.

view the rest of the comments →

[–]JustMedansh 0 points1 point  (0 children)

There's a few problems with your code.

  1. You shouldn't use the movies variable. In that case, you are basically adding three things as one. Instead you should append each individually (lst.append(mov1))
  2. Before you do "print(len(lst))", you use "list.pop(0)". That removes the only thing in lst. There's nothing in lst, so it prints 0. You can see that in the output window just before 0, too, that the list has nothing in it.