Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 268 Bytes

File metadata and controls

20 lines (16 loc) · 268 Bytes

DICTIONARIES

=> Structure dict_name = {
"key": value, "key2": "value" } =>Operations: dict_name["key3"] = Value dict_name.pop("Key") "key" in dict_name

SETS

=> Structure: sets_name = {val1,val2,val3}

=> Operations sets_name.add(value) sets_name.remove(val)