![]() |
VOOZH | about |
In the previous two articles (Set 2 and Set 3), we discussed the basics of python. In this article, we will learn more about python and feel the power of python.
In python, the dictionary is similar to hash or maps in other languages. It consists of key-value pairs. The value can be accessed by a unique key in the dictionary. (Before python 3.7 dictionary used to be unordered meant key-value pairs are not stored in the order they are inputted into the dictionary but from python 3.7 they are stored in order like the first element will be stored in the first position and the last at the last position.)
Output:
{'xyz': 123, 'abc': 345}
['xyz', 'abc']
[123, 345]
xyz 123
abc 345
0 xyz 123
1 abc 345
True
False
Time Complexity: O(1)
Auxiliary Space: O(n)
It is commonly used for creating minimal classes.
Output:
Break method output 1 3 4 Continue method output 1 3 4 6 7
Time complexity: O(n), where n is the length of the array arr.
Auxiliary space: O(1), since the space used is constant and does not depend on the size of the input.
Output:
[1, 8, 27, 64, 125] 25 12 [-10, -9, -8, -7, -6, -5, -4, -3, -2, -1, 0, 1, 2, 3, 4]
For more clarity about map, filter, and lambda, you can have a look at the below example:
Output:
[15, 25]
The same operation can be performed in two lines using map, filter, and lambda as :
Output:
[15, 25]