Created
August 20, 2025 18:30
-
-
Save hoosnick/43a3ef9170a7f509c0c08abd0421c3d3 to your computer and use it in GitHub Desktop.
Code from Telegraph article
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from typing import Final | |
| class Point: | |
| def __init__(self, x: int, y: int): | |
| self.x: Final[int] = x | |
| self.y: Final[int] = y | |
| p1 = Point(10, 20) | |
| # Координатани ўзгартиришга уриниш | |
| p1.x = 30 # <-- MyPy бу ерда ҳам хато курсатади! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment