12 Beginner Concepts About Type Hints To Improve Your Python Code
12 Beginner Concepts About Type Hints To Improve Your Python Code Just like unit tests, type hints take developer time but pay off in the long run Photo by Arian Darvishi on Unsplash Python is a dynamically-typed programming language. This means that the interpreter performs type checking only when the code runs and the variable type is allowed to change […]
12 Python Decorators to Take Your Code to the Next Level
12 Python Decorators to Take Your Code to the Next Level Do more things with less code without compromising on quality Photo by Chris Ried on Unsplash Python decorators are powerful tools that help you produce clean, reusable, and maintainable code. I’ve long waited to learn about these abstractions and now that I’ve acquired a solid understanding, I’m […]