21/02/2021
>>>
>>> dictionary={"key":"value"}
>>> print(dictionary["key"])
value
>>> d={"a":[1,2,3],"b":(4,5,9),"c":"value","d":1}
>>> print(d["a"])
[1, 2, 3]
>>> print(type(d["a"]) )
>>> print(d["b"])
(4, 5, 9)
>>> print(type(d["c"]))
>>> print(d["d"])
1
>>> print(type(d["d"]))
>>>