DEV Community

Discussion on: Python Typing, between 3.6 and 3.7

Collapse
 
csgeek profile image
csgeek

I think the typing in Python is called hints, I may be wrong.

One issue I have with it though, even though you give it a hint it doesn't actually enforce it. unless that changes I find the hints or typing fairly pointless.

Collapse
 
quintisimo profile image
Quintus Cardozo

The types are not evaluated at runtime. You can use pyright in vscode to get type errors in your editor.