|
|
|
|
|
by flossly
23 days ago
|
|
Strongly typed is not a well defined term. But by most people definitions, Python certainly is NOT strongly typed. My take at a definition... Strongly typed languages make a serious effort to use the type system to prevent whole categories of bugs. It kinda bites with the "dynamic typing" (a euphemism or marketing-speak for "weak typing") that Python/Ruby/JS implement. Sure some are adding typing now (trying to make big codebases in those languages more manageable), but it's always an optional add-on. |
|