5 Answers
+ 5
list is mutable, but a tuple isimmutable. This means that you can reassign or delete a entire tuple, but you cannot do the same with list.
+ 4
list and copy are different...
in list 0 you can make a list of number or words etc....but for now create another list1 just keep it copy and copy is to copy the list 0 to list1.
+ 3
Run "help(list.copy)" at the Coding Playground to see this:
"Return a shallow copy of the list."
+ 2
what is the difference between tuple and list