Hello friends,
I Want to know that Which type of language is Python?
Python is an interpreted, object-oriented, high-level programming language with dynamic semantics. Its high-level built in data structures, combined with dynamic typing and dynamic binding, make it very attractive for Rapid Application Development.
Hi Friends,
Python is a dynamically typed language. This means that it does type checking at run-time as opposed to compile-time.
This means that the type is associated with run-time values, and not named variables or fields. The advantage of this is that you don't have to specify types as you write your scripts. However, this encourages some pretty ugly bugs ,for instance,due to the interpreter misinterpreting the type of a variable, which might be hard to find.
Python is an interpreted, object-oriented, high-level programming language with dynamic semantics. Its high-level built in data structures, combined with dynamic typing and dynamic binding, make it very attractive for Rapid Application Development.