Today we will see different ways of extracting values and keys from a python dictionary. Similarly, you can easily access any other item’s location. It’s been a month and you are making great progress ...
Suppose you have the following dictionary: ``` dict_1 = {'a': 0, '1': {1: 'c', 2: 'd'}, '2': [1, 2, 3, 4, 5, 6]} ``` When you print this on the console you will have ...
One thing to note here is you can also use double triple quotes for multiline strings(""" """ like this). Do you remember I said(ok wrote) there is something called unassigned strings in this post?