What is Tuple?
How to create Tuple?
READ OR ACCESS
How to update Tuple?
How to Delete Tuple?
——————————————————————————————————————————————————————————
What is List?
How to create List?
READ OR ACCESS
How to update List?
INSERT NEW ELEMENTS.
APPEND: It will add an item to the end of the list
INSERT :The insert() method inserts an item at the specified index
EXTEND: To append elements from another list to the current list, use the extend() method.
How to Delete list?
POP : The pop() method removes the specified index.
REMOVE: The remove() method removes the specified item.
CLEAR: He clear() method empties the list. The list still remains, but it has no content.