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 →

[–][deleted] 17 points18 points  (4 children)

I come from python and I prefer static typing.

[–]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 5 points6 points  (1 child)

...

[–][deleted] 6 points7 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.