Hacker Read top | best | new | newcomments | leaders | about | bookmarklet login

You mean statically typed? Python is already strongly typed.

Try running it through mypy with all the strict options. If you can get it to 100% pass and don't try to "cheat" the system too much with dynamic casts, I think you will find runtime type errors to be very rare.



sort by: page size:

You probably meant statically typed, python already is strongly typed.

Python is strongly typed. Did you mean statically typed?

You can use optional type-hinting in Python now, and install MyPy as a type-checker.


Python is strongly typed, insofar as the term has a meaningful definition at all.

You meant "give me a statically typed language". Which may not actually be what you want, since statically typed languages can be, and some historically have been considered, weakly typed (C, for example).


Python is strongly typed. Now it has static types enforced at runtime. It’s good to be precise when there are so many quirks to expressing and checking types.

Python is, and has always been, a strongly typed language.

Do you mean "statically typed"?


Python is strongly typed. You mean static typing.

Python is strongly typed. You want statically typed. (Instead of duck typed / dynamically typed)

Python is a strongly-typed language.

Perhaps you're thinking of static versus dynamic typing?


Python is strongly typed, by dynamically typed.

I believe that marketing Python as "strongly typed" has the potential to confuse rather than educate. Python still crashes at runtime with these errors. It has nice error messages, but it still crashes, potentially in production. If you want to create your own "types", you'll have to add your own runtime checks. It's much more sane than JavaScript, but it's not strongly typed like Haskell. Python does not automatically coerce some built-in runtime values, that's it.

Python is strongly typed, but it is not statically typed. Statically typed is what you're after.

Python is strongly typed. If your entire career has been Python, you will have a lot of experience with it.

Static typing, maybe not so much.


This is interesting. I have programmed in typed languages for most of my life, including C/C++/Java/C#, but when I went to Python, i did not feel any problem with lack of static typing.

Or perhaps you mean "strong typing"? Because Python is a "strongly typed" language: It does not do automatic conversion of types, if types are incompatible, an error will be raised. Which I agree with.

But it is a dynamically typed language: You don't need to declare types, and, most importantly of ALL, functions and containers (lists, etc) are not bound to a specific input data type.

I do think the combination of strong typing + dynamic typing is a great combination.

Also, amen brother on your thoughts about Unit tests. They have been greatly overblown these last years.


Python is strongly typed, just not static.

Whatever terminology you want to use, I mean at compile time you would get an error because the types are wrong for that specific example. Python is generally referred to as strongly dynamically typed, that's why I only wrote "static".

Python is strongly typed. It is not statically typed.

Python is strongly typed

Not sure if you know what you're talking about. Python has always been a strongly typed language.

Python is strongly typed. Maybe you are confusing strong vs static typing.
next

Legal | privacy