Python packaging: why we can’t have nice things, part 1 – The Old Refrain
Ramblings of a veteran Pythonista with a passion for refactoring and education. (more…)
Read more »
If you have written some Python code and used the for loop, you have already used iterators behind the scene but you probably didn’t know about it. Iterators are objects that we can iterate over one by one. They are practically everywhere in a Python code… Read more