> welcome to
python
sucks
Why Python is as good
as they say.
> latest articles
- Inside Python
Why Don't Identical Names Conflict?
Aug 11, 2026In Python, identical names can exist at the same time. Why does not a variable inside a function change the variable with the same name outside it?
- Inside Python
Where Does Python Store Names?
Aug 4, 2026We already know that a variable isn't a 'memory cell' that stores a value. Python creates an object, and a name starts referring to it. But that raises a new question: where is the name itself stored?
- Learn Python
Lists
Aug 3, 2026In the previous article, we learned how to iterate over several values using a `for` loop. But what if we have a set of data that we want to store and use later?
- Learn Python
The for Loop
Aug 3, 2026In the previous article, we learned about the `while` loop. It is great when we do not know in advance how many times an action needs to be repeated. But very often we already know that we want to iterate over some set of data.
- Learn Python
The while Loop
Aug 3, 2026In the previous article, we learned how to make programs make decisions. But what should we do when an action needs to be performed many times?