2016-09-25

Python is a powerful programming language. And there is so much we can do with it to make the code lighter and faster. It not only supports features like multiprocessing but does it with ease. Below, we’ve listed some of the best Python code optimization tips and tricks. Read on!

Python critics sometimes claim that it’s slow. But that’s not because of the Python but due to the practices used to write the code. Here, in this post, you’ll find tips to speed up your Python applications.

Since Python is a feature rich language, so there’s always scope for improvement. If you wish to make your Python code run even faster and more efficient, then continue reading.

The beauty of these tips and Python is all optimization techniques actually, lies within the realm of Python. You just need to know them and implement in a disciplined approach while coding. Recently, we’d written an article on thirty essential Python programming tips and tricks. You can check it out as well to find what you don’t know already.

Given here is the Table of Index so that it’s easy for you to navigate throughout this post.

1. Interning Strings for Efficiency.
2. Peephole Optimization.
3. Profile your Code.
3.1. Use Stopwatch Profiling with <timeit>.
3.2. Use Advanced Profiling with <cProfile>.
4. Use Generators and Keys for Sorting.
5. Optimizing Loops.
5.1. Illustrations for Optimizing a for Loop in Python.
5.2. Let’s Decode What have We Optimized?
6. Use Set Operations.
7. Avoid Using Globals.
8. Use External Libraries/Packages.
9. Use Built-in Operators.
10. Limit Method Lookup in a Loop.
11. Optimizing with Strings.
12. Optimizing with If Statement.

Let’s first begin with some of the core internals of Python that you can exploit to your advantage.

Essential Python Code Optimization Tips and Tricks for Geeks.



1. Interning Strings for Efficiency.

Interning a string is a method of storing only a single copy of each distinct string. And we can make the Python interpreter reuse strings by manipulating our code to trigger the interning of strings.

Usually, when we create a string object, it’s up to the Python interpreter to determine whether or not to cache the string. It’s the inherent nature of the interpreter which it reveals in certain conditions like while processing the identifiers.

Declaring a string with a name which starts either with a letter or an underscore and includes only or combinations of letters/underscores/numbers, will make Python intern the string and create a hash for it.

Since Python has a lot of internal code using dictionaries, which leads it to perform a no. of searches for identifiers. So interning the identifier strings speeds up the whole process. To put it simply, Python keeps all identifiers in a table and generates unique keys (hash) per object for future lookups. This optimization takes place during compilation. And it also combines the interning of string literals that resembles the identifiers.

So it’s quite a useful feature in Python which you can exploit to your benefits. Such a feature can help you speed up the processing of a large text mining or analytics application. Because they require frequent searches and flip-flop of messages for bookkeeping.

The strings which you read from a file or receive through a network communication aren’t the part of the auto-interning in Python. Instead, you can offload this task to the intern() function for handling such strings.

2. Peephole Optimization technique.

Peephole optimization is a method that optimizes a small segment of instructions from a program or a section of the program. This segment is then known as <Peephole> or <Window>. It helps in spotting the instructions that you can replace with a minified version.

Let’s see how Python deals with the peephole optimization. It has a built-in way of doing it, check out from the examples below.

Example-1.

The example has a function initializing two of its members. One of them is a string whereas another one is an integer. Following next is one more code attribute gets added to the function and will default to be <None>. The interesting part is that the four literal(s) will linger in memory as constants. Please refer from the image given below.



Python Code Optimization Tips and Tricks – Example(1)

In the attached snapshot, you can see that we’ve used the constant <.__code__.co_consts>. It is one of the three tuples that every function object in Python has. Yes, a function is also an object in Python. It comprises of the following three tuples.

1. The <__code__.co_varnames>: Holds local variables including parameters.
2. The <__code__.co_names>: Stores global literals.
3. The <__code__.co_consts>: References to all the constants.

Now, there is more what the peephole optimization can do like turning mutable constructs into immutable. Refer the below examples.

Example-2.

In this example, we are searching for a particular element in a set using the “in” operator. Here, Python will detect that the set is going to be used to verify the membership of an element. So it’ll treat the instructions as a constant cost operation irrespective of the size of the set. And will process them faster than it would have done in the case of a tuple or a list. This method is known as membership testing in Python. Kindly check the attached screenshot.



Python Code Optimization Tips and Tricks – Example(2)

Example-3.

Nonetheless, if you do use the list object in a similar fashion as we did with the set in the last example, then Python will translate it too into a tuple constant. Now, in this example, we’ve clubbed the usage of both the set and list together. And shown that both objects are getting translated into constants. Please refer the attached screenshot.

Python Code Optimization Tips and Tricks – Example(3)

The same fact, we can verify looking at the bytecode of the translated code. For this purpose, we have to import Python’s “dis” module. And passing the function object as an argument to the “dis” constructor will print the entire memory layout in bytecode.

Python Code Optimization Tips and Tricks – Example(4)

From the “dis” output in the attached image, it’s quite easy to verify that both the set and list have turned as Constants.

The keynote here is that Python only does this transformation for literals. If any of the set/lists used in the above examples would not be literals, then optimization wouldn’t have happened.

3. Profile your code.

Before you further dive into optimizing your code, it would be naive, if you don’t know where the bottlenecks lie. So first of all, profile your code using any of the two approaches mentioned below.

3.1. Use stop-watch profiling with <timeit>.

It’s the traditional way of profiling using the Python’s <timeit> module. It records the time a segment of your code takes for execution. It measures the time elapsed in milliseconds.

The above example demonstrates that the join method is a bit more efficient than the others.

3.2. Use advanced profiling with <cProfile>.

It’s since Python 2.5 that cProfile is a part of the Python package. It brings a nice set of profiling features to isolate bottlenecks in the code. You can tie it in many ways with your code. Like, wrap a function inside its run method to measure the performance. Or, run the whole script from the command line while activating cProfile as an argument with the help of Python’s “-m” option.

Here, we are showing some basic examples, so that you can learn how to use it.

3.2.1. Example(1) – Using cProfile in Python.

Looking at the results, you can investigate the areas for improvement. Even more usefully, we can attach the cProfile while running a script.

3.2.2. Example(2) – Using cProfile in Python.

3.2.3. How to interpret cProfile results?

It’s even more important to find the culprit from the profiling output. You can make a decision only if you know the key elements constituting the cProfile report.

1. <ncalls>: It is the number of calls made.
2. <tottime>: It is the aggregate time spent in the given function.
3. <percall>: Represents the quotient of <tottime> divided by <ncalls>.
4. <cumtime>: The cumulative time in executing functions and its subfunctions.
5. <percall>: Signifies the quotient of <cumtime> divided by primitive calls.
6. <filename_lineno(function)>: Point of action in a program. It could be a line no. or a function at some place in a file.

Now, you have all elements of profiling report under check. So you can go on hunting the possible sections of your program creating bottlenecks in code.

First of all, start checking the <tottime> and <cumtime> which matters the most. The <ncalls> could also be relevant at times. For rest of the items, you need to practice it yourself.

4. Using generators and keys for sorting.

Generators are a great tool for memory optimization. They facilitate to create functions that can return one item (the iterator) at a time instead of returning all at once. A good example is when you’re creating a huge list of numerals and summing them together.

Also, while sorting items in a list, you should use keys and the default <sort()> method to the extent possible. In the below example, check that we are sorting the list as per the index selected as part of the key argument. The same approach, you can use with strings.

5. Optimizing loops.

Most programming language stress upon the need to optimize loops. In Python, we do have a way of turning loops perform faster. Consider a method which programmers often miss is preventing the use of dots within a loop.

In Python, you’ll see a couple of building blocks that support looping. Out of these few, the use of “for” loop is prevalent. While you might be fond of using loops but they come at a cost. The Python engine spends substantial efforts in interpreting the for loop construct. Hence, it’s always preferable to replace them with built-in constructs like Maps.

Next, the level of code optimization also depends on your knowledge of Python built-in features. In the below examples, we’ll try to explain how different constructs can help in optimizing loops.

5.1. Illustrations for optimizing a for loop in Python.

Example-1.

Let’s consider a function which updates the list of Zipcodes, strips the trailing spaces, and use a for loop.

Example-2.

Now, see how you can translate the above into a single line using the map object. It’ll also be more cost efficient now.

Example-3.

We can even use the list comprehensions to make the syntax a bit more linear.

Example-4.

And lastly, the fastest approach would be to convert the for loop into a generator expression.

5.2. Let’s decode what have we optimized?

As explained above, using generator expression is the fastest way to optimize the for loop in the above use case (and in general). We’ve clubbed the code of four examples so that you can also see the performance gains attained in each approach.

6. Use Set operations.

Python uses hash tables to manage sets. Whenever we add an element to a set, Python interpreter determines its position in memory allocated for the set using the hash of the target element.

Since Python automatically resizes the hash table, the speed can be constant (O(1)) no matter the size of the set. That’s what makes the set operations execute faster.

In Python, set operations include union, intersection, and difference. So you can try using them in your code where they can fit. These are usually faster than iterating over the lists.

7. Avoid using globals.

It’s not limited to Python, almost all languages disapprove the excessive or unplanned use of globals. The reason behind is that they could have hidden/non-obvious side effects leading to Spaghetti code. Moreover, Python is real slow at accessing external variables.

However, it permits the limited use of global variables. You can declare an external variable using the global keyword. Also, make a local copy before using them inside loops.

8. Using external libraries/packages.

Some python libraries have a “C” equivalent with same features as of the original library. Being written in “C” makes them perform faster. For example, try using cPickle instead of using pickle.

Next, you can use <Cython> which is an optimizing static compiler for both the Python. It’s a superset of the Python and brings supports of C functions and types. It instructs the compiler to produce fast and efficient code.

You can also consider using the PyPy package. It includes a JIT (Just-in-time) compiler which makes Python code run blazingly fast. You can even tweak it to provide extra processing boost.

9. Use built-in operators.

Python is an interpreted language and based on high-level abstractions. So you should use the built-ins wherever possible. It’ll make your code more efficient because the built-ins are pre-compiled and fast. Whereas the lengthy iterations which include interpreted steps get very slow.

Similarly, prefer using built-in features like the map which add significant improvements in speed.

10. Limit method lookup in a loop.

When working in a loop, you should cache a method call instead of calling it on the object. Otherwise, the method lookups are expensive.

Consider the following example.

11. Optimizing using strings.

String concatenation is slow, don’t ever do that inside a loop. Instead, use the Python’s join method. Or, use the formatting feature to form a unified string.

RegEx operations in Python are fast as they get pushed back to C code. However, in some cases, basic string methods like <isalpha()/isdigit()/startswith()/endswith()> works better.

Also, you can test different methods using the <timeit> module. It’ll help you determine which method is truly the fastest.

12. Optimizing with if statement.

Like most programming languages allow lazy-if evaluation, so does the Python. It means, if there are joining ‘AND’ conditions, then not all conditions will be tested in case one of them turns false.

1. You can adjust your code to utilize this behavior of Python. For example, if you are searching for a fixed pattern in a list, then you can reduce the scope by adding the following condition.

Add an ‘AND’ condition which becomes false if the size of the target string is less than the length of the pattern.

Also, you can first test a fast condition (if any) like “string should start with an @” or “string should end with a dot.”.

2. You can test a condition <like if done is not None> which is faster than using <if done != None>.

Summary – Python Code Optimization Tips and Tricks.

We wish the methods given in this article can help you build faster Python applications. But while applying these tips, keep in mind that only optimize when you’ve established gray areas in your code.

Some of the tips you can directly adopt in your coding practice. Like, the use of profiling methods, they are the ones to give you the right direction and lead to the road of optimization.

Apart from the above tips, you must check your code for quadratic behavior. You should be aware of the time complexity of the different Python constructs like the list, set, and collections. Lastly, collect data as much you can, it’ll help you establish what you are doing is right or not.

If somehow the above post “Python Code Optimization Tips and Tricks” would have driven you to write faster and quality code, then don’t mind sharing it with the rest of the world.

If You Are Working On Something That You Really Care About, You Don’t Have To Be Pushed. The Vision Pulls You. – Steve Jobs

All the Best,
TechBeamers.

The post Essential Python Code Optimization Tips and Tricks for Geeks appeared first on Python, Java, TestNG, Selenium Webdriver Tutorials.

Show more