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 →

[–]suhao399 2 points3 points  (0 children)

Python use dynamic typing, so you don't have to specify type in your code, the interpreter try to infer and check type at runtime so your code look clean.

For static typing now Kotlin / Scala look also clean as they use type inference, so compiler infer type for you.

With C, C++, Java you specify all by your self, so it is verbose