Source Code:
(back to article)
my_dict = {'a': 1, 'b': 2, 'c': 3} print(my_dict['a']) # This will print 1
Result:
Report an issue