dictin python code example
Example 1: dictionary in python
thisdictionary = {'key':'value','key1':'value1'}
print(thisdictionary['key'])
Example 2: dict python
a = {'a': 123, 'b': 'test'}
thisdictionary = {'key':'value','key1':'value1'}
print(thisdictionary['key'])
a = {'a': 123, 'b': 'test'}