Category: Howtos
-
Type hints in Python 3
Python has support for type hinting since version 3.5. That’s quite useful, because it makes your code more predictable since you have more information about what types to expect. In this article we will dive deeper into what type hinting exactly is, how it works and how you can use it in Python 3. With…