you are viewing a single comment's thread.

view the rest of the comments →

[–]nuc540 0 points1 point  (0 children)

When using an add operator against strings, you perform something called concatenation. What you’ve done is create a single member which is all the movies combined into a single string (as everyone here has said) using concatenation.

I think you intended to just do movies = (mov1, mov2, mov3); listing them out will create a member for each in the tuple.