Python
Python is an object-oriented, high-level programming language with many semantics. It is high-level, which builds data structures, combined with dynamic typing and dynamic binding, make it very attractive for Rapid Application Development, as well as for use as a scripting or glue language to connect existing components together.
Python's simple, easy to learn syntax emphasizes readability and therefore reduces the cost of program maintenance. Python supports modules and packages, which encourages program modularity and code reuse.
The Python
interpreter and the extensive standard library are available in source or binary
form without charge for all major platforms, and can be freely distributed.
Most programmers fall in love with Python mostly because of its high productivity. Since there is no other step, the test-debug cycle is very fast.
Debugging programs made by Python is easy: a mutation will never cause a fault. Instead, when the interpreter finds an error, it gives an exception,but if the program doesn't catch the exception, it prints a stack trace.
The source level
debugger lets you inspect local and global variables, evaluate
arbitrary expressions, to set breakpoints, stepping through the code a line at a
time, ect. The debugger is written in Python as well , to show
Pythons incredible power.
This Web Page Created with PageBreeze Free HTML Editor