Skip to main content

Performance

Generators in Python - Your Code 1000+ Times More Efficient
·1950 words·10 mins
Python Drops Performance Generators
Do you know the difference between a “normal” function and a generator function in Python? What is the difference between the return of a usual function and the yield of a generator? In this article we will answer these questions and also delve into some aspects of the language
Iterables vs Iterators in Python - Writing Efficient Code
·1414 words·7 mins
Python Drops Performance
Do you know what an iterable is? And an iterator? How to recognize these structures in Python? Answering these questions is the goal of this article.
Is Python Slow? How to Make Your Code 1000+ Times Faster
·1993 words·10 mins
Python Performance
We’ll compare pure Python code and other approaches efficiency, delving into what truly impacts performance and optimizing Python’s advantages.