Stub Files

What if you need to work with Python versions before 3.5 and you still wanna use types.Or maybe you don’t […]

Read More

Custom Types

Sometimes you can’t specify your types just with the built-in types. In that case, you can us Optional, Union, and List from the typing module to […]

Read More

Built-in Types

Python, like JavaScript and Ruby, and many other languages, is dynamically typed. This means that a variable like name could […]

Read More