Virif

Python is a beautiful language. Simple to use yet powerfully expressive. But are you using everything that it has to offer?

The advanced features of any programming language are usually discovered through extensive experience. You’re coding up a complicated project and find yourself searching for something on stack-overflow. You then come across a beautifully elegant solution to your problem that uses a Python feature you never even knew existed!

That’s totally the funnest way to learn: discovery by exploration and accident!

Here are 5 of the most useful advanced features of the Python programming language — and more importantly how to use them!

1. Maps

Map() is a built-in Python function used to apply a function to a sequence of elements like a list or dictionary. It’s a very clean and most importantly readable way to perform such an operation.

2. Lambda functions

Lambda Function is a small, anonymous function — anonymous in the sense that it doesn’t actually have a name.

Python functions are typically defined using the style of def a_function_name() , but with lambda functions we don’t give it a name at all. We do this because the purpose of a lambda function is to perform some kind of simple expression or operation without the need for fully defining a function.

A lambda function can take any number of arguments, but must always have only one expression:

x = lambda a, b : a * b
print(x(5, 6)) # prints ’30’
x = lambda a : a*3 + 3
print(x(3)) # prints ’12’

See how easy that was! We performed a bit of basic math without the need for defining a full on function. This is one of the many features of Python that makes it a clean and simplistic programming language to use.

3. Itertools

The Python Itertools module is a collection of tools for handling iterators. An iterator is a data type that can be used in a for loop including lists, tuples, and dictionaries.

Using the functions in the Itertools module will allow you to perform many iterator operations that would normally require multi-line functions and complicated list comprehension. Check out the examples below for an awesome illustration of the magic of Itertools!

4. Filtering

The Filter built-in function is quite similar to the Map function in that it applies a function to a sequence (list, tuple, dictionary). The key difference is that filter() will only return the elements which the applied function returned as True.

Check out the example below for an illustration:

# Our numbers
numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]
# Function that filters out all numbers which are odd
def filter_odd_numbers(num):
if num % 2 == 0:
return True
else:
return False
filtered_numbers = filter(filter_odd_numbers, numbers)
print(filtered_numbers)
# filtered_numbers = [2, 4, 6, 8, 10, 12, 14]

Not only did we evaluate True or False for each list element, the filter()function also made sure to only return the elements which matched as True. Very convenient for handling to two steps of checking an expression and building a return list.

5. Generators

Generator functions allow you to declare a function that behaves like an iterator, i.e. it can be used in a for loop. This greatly simplifies your code and is much more memory efficient than a simple for loop.

Consider an example where we want to add up all of the numbers from 1 to 1000. The first part of the code below illustrates how you would do this using a for loop.

Now that’s all fine and dandy if the list is small, say a length of 1000. The problem arises when you want to do this with a huge list, say 1 billion float numbers. With a for loop, that massive memory chewing list is created in memory — not everyone has unlimited RAM to store such a thing! The range() function in Python does the same thing, it builds the list in memory

Section (2) of the code illustrates the summing of the list of numbers using a Python generator. A generator will create elements and store them in memory only as it needs them i.e one at a time. That means, if you have to create 1 billion floating point numbers, you’ll only be storing them in memory one at a time! The xrange() function in Python uses generators to build lists.

Moral of the story: If you have a large range that you’d like to generate a list for, use a generator or the xrange function. This is especially true if you have a really memory sensitive system such as mobile or at-the-edge computing.

That being said, if you’d like to iterate over the list multiple times and it’s small enough to fit into memory, it will be better to use for loops and the range function. This is because generators and xrange will be freshly generating the list values every time you access them, whereas range is a static list and the integers already exist in memory for quick access.

# (1) Using a for loop
numbers = list()
for i in range(1000):
numbers.append(i+1)
total = sum(numbers)
# (2) Using a generator
def generate_numbers(n):
num = 0
while num < n:
yield num
num += 1
total = sum(generate_numbers(1000))
# (3) range() vs xrange()
total = sum(range(1000 + 1))
total = sum(xrange(1000 + 1))

By Virlif