Webmaster Forums - Website and SEO Help

Search Engines and Marketing => Search Engine Optimization SEO => Topic started by: indiaastro on November 07, 2019, 02:02:19 AM

Title: Which type of language is Python?
Post by: indiaastro on November 07, 2019, 02:02:19 AM
Hello friends,


I Want to know that Which type of language is Python?
Title: Re: Which type of language is Python?
Post by: vinitha on November 07, 2019, 03:12:44 AM
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.
Title: Re: Which type of language is Python?
Post by: sinelogixtech on November 08, 2019, 06:19:01 AM
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.
Title: Re: Which type of language is Python?
Post by: vinitha on November 08, 2019, 07:20:56 AM
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.