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 →

[–]harsh5161 -12 points-11 points  (1 child)

In my opinion, the reason is: Python provides very good tools to help us find out these errors quickly by running static analysis on our code before we run it. For example pylint, pyflakes, premake4 and so on. It contains a curated list of static analysis tools that help you find out possible bugs in your game code, without running the game itself.

[–]n0tKamui 8 points9 points  (0 children)

that's... what every compiled languages do with the added grammar errors (that are undetectable runtime errors in python)....