store values in dictionary python code example
Example 1: dictionary in python
thisdictionary = {'key':'value','key1':'value1'}
print(thisdictionary['key'])
Example 2: dictionary in python
shapes={"square": 90, "triangle": 60}
thisdictionary = {'key':'value','key1':'value1'}
print(thisdictionary['key'])
shapes={"square": 90, "triangle": 60}