Hacker News new | ask | show | jobs
by leephillips 1846 days ago
Python is strongly typed, and your examples show the strong (dynamic) type system in action. An example of a language that is not strongly typed would be Javascript, where you can do 1 + "1". In Python, that gets you a typeerror, because Python is strongly typed.
1 comments

Sorry, you're right, it's strongly typed but it is not statically typed.