|
|
|
|
|
by stevesimmons
2050 days ago
|
|
Python is biased towards "explicit is better than implicit". It would rather fail with a TypeError than silently coerce types and risk masking logic/type errors. > Why do I have to care about types in these dynamically typed languages? Because Python is strongly typed, and types determined behaviour. |
|