how to access values in dictionary python\ code example
Example 1: dictionary in python
thisdictionary = {'key':'value','key1':'value1'}
print(thisdictionary['key'])
Example 2: python dict access
my_dict = {'name':'Jack', 'age': 26}
my_dict['name']