python sucks >_
articles manifesto RU

> all articles

  • Identity and Equality in Python

    Jun 22, 2026 →
    Inside Python

    If you ask a beginner what the difference is between is and ==, you'll often hear something like `==` compares values, while `is` compares references.

  • Mutable and Immutable Objects in Python

    Jun 20, 2026 →
    Inside Python

    Python divides all objects into two large groups. The first group is called mutable objects. The second is immutable objects.

  • Why Numbers Behave Differently from Lists

    Jun 17, 2026 →
    Inside Python

    It almost looks as if Python somehow 'links' variables together. But that's not what's happening.

  • Why Does a List Change in Two Variables?

    Jun 10, 2026 →
    Inside Python

    In the previous article, we learned that variables in Python don't store data themselves. Instead, a name simply refers to an object. With numbers, this feels quite intuitive. But as soon as we start working with lists, Python's behavior often surprises people.

  • What Really Happens When You Write x = 10

    Jun 3, 2026 →
    Inside Python

    At first glance it sounds obvious. We imagine a variable as a box in memory where you put a value. But Python works a little differently - and understanding that difference explains a lot.

python sucks >_

Honest about Python.
No hype, no rose-colored glasses.