Big O notation

In simple terms, the big O or big Oh notation is a way to represent the computational complexity of an algorithm. Here, the O is the letter O, as in order, and not the number zero. The big O indicates an upper bound or the worst-case scenario of the complexity of an algorithm (details to follow in the next section). This concept can be better explained with an example. Let's take a look at the following code:

num = 100 
x = []
for i in range(num): 
    x.append(i)

Let's call this trivial code fragment an algorithm. It is a simple operation that appends a number to the list inside a for loop. Here, num represents the size of the input used by the algorithm. If you increase num, the algorithm will have to do more work inside the for loop. ...

Get Learning Python Application Development now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.