Is Python type safe?
Many programmers will equate static type checking to type-safety: “language A has static type checking and so it is type-safe” “language B has dynamic type checking and so it is not type-safe” Sadly, it’s not that simple. In the Real World For example, C and C++ are not type-safe because you can undermine the type-system … Read more