Content deleted Content added
No edit summary |
No edit summary |
||
Line 26:
====Type Checking====
Python is [[dynamic typing|not statically typed]] because python files are interpreted, not compiled.
While this *MAY* not be the best thing for a massive project, it comes in handy for rapid prototyping. Consider this example between:
java (explicitly, statically checked at compile time, and
AND
python (leaves type checking up to the coder, dynamically and strictly checked at runtime
Here is example comparing the features discussed between the python and java above: [[Python-Java/Typeheckexample]]
|