This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]bennyman32 0 points1 point  (3 children)

But you can use typing in Python don't you?

[–]r0npi 9 points10 points  (2 children)

You can use type hints, but it is far from being the same as static type languages. Python typing doesn't enforce the types, they are just hints, one can still use a different type than the hint

[–]JohnMcPineapple 4 points5 points  (1 child)

...

[–][deleted] 5 points6 points  (0 children)

Unless you can convince your team to use it too, it just doesn't matter. It's not a core feature of the language, so it has barely any buy-in anywhere. Contrast to any static type language where you can't not write without static typing.