2.2PYTHON AND ITS CHARACTERISTICS
Python is a dynamic, high level, free open source, and interpreted programming language. It supports object-oriented programming as well as procedural-oriented programming. In Python, we don’t need to declare the type of variable because it is a dynamically typed language. For example, x=10, where x can be anything such as string or int.
Some of its characteristics are as follows:
1.Easy to Code: Python is a high-level programming language.Python is very easy to learn as compared to other languages like C, C#, JavaScript, and Java.It is very easy to code in Python and anybody can learn Python in a few hours or days.It is also a developer-friendly language.
2.Free and Open Source: Python is freely available at the official website. It is open-source, which means that the source code is available to the public.
3.Object-Oriented Language: One of the key features of Python is that it is an object-oriented language and utilizes concepts such as classes...