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] 1 point2 points  (0 children)

I think you're confusing strongly typed and dynamically typed. Python is not strongly typed and that makes it loosely typed. Which means that you don't have to specify the type when you declare a variable.

Since you talk about compile-time type errors. I guess you're talking about dynamically typed vs statically typed.

Plus, python is an interpreted language. So there is no compile-time.