"map' is a built-in function in python. It takes first argument as a function or a callable object. All other arguments must be se...
Operations and Usage of Sets - Python
Set is a built in data-type(data-structure) in python. It only stores unique elements. It do not contains duplicate elements. We can iterate...
Operations and Usage of Numbers - Python
Python provides four different data types to handle the numbers/numeric data. 1. int: positive or negative numbers without decimal point Ex:...
Operations and Usage of Strings - Python
String is a one of the built-in data types in python. We can form strings by combining zero or more characters. It is immutable data type. ...
Operations and Usage of Tuple - Python
Tuple is a data structure in python. It is used to store the data like lists. The only difference is it is not mutable. We cannot able to ...
Operations and Usage of List - Python
List is a data structure in python. It is used to store a group of elements(not only similar type). we can access any element with the index...
Operations and Usage of Dictionary - Python
Dictionary is one of the data-type(data-structure) in python. It store's the data in a hash-map format(keys, values) How to create a dic...