Skip to content

Python

Python is an high level, interpreted, general-purpose programming language. It’s based on design philosophy that emphasizes highly on code readability. It supports structured, object-oriented and functional programming paradigm. It has gained popularity due to its ease of use and collection of large sets of standard libraries.

There are many situations when similar operations have to performed on a complete list of data’s. A beginner will write for/while loop to perform this. But wait, there is a better and faster way to do this in python. This is where map() function . It is faster and can be done in just one line. Consider following example where, you need to carry find a square of all the… Read More »Python Tutorial : Use Map Function to speedup your python code

Python Tutorial : Use Map Function to speedup your python code