Python) list, tuple
Both list and tuple are to make a group of some type of things:

Difference between two:
words or letters in the tuple are immutable
words or letters in the list are mutable
tuple doesn’t require parenthesis
_______________________________________________________
Could delete, add, or edit the things in the tuple or list:


