What is Set?
How to create Set?
Empty Set
Read and Access
Add or Change
Add() method to add one item to a set use the add() method.
Update method() To add items from another set into the current set, use the update() method.
Remove : To remove an item in a set, use following methods:
————————————————————————————————————————————————————————–
What is Dictionary?
How to create Dictionary?
Creating a Dictionary
Creating an empty Dictionary
ACCESS DICTIONARY ITEMS
ACCESS ALL THE KEYS
ACCESS ALL THE VALUES
KEY,VALUE BOTH ACCESS
How to update Dictionary?
UPDATE : The update() method will update the dictionary with the items from the given argument.
REMOVE DICT ITEMS