Introduction to Python programming language:



What is a general purpose programming language?

A general-purpose programming language is a language that can be used to develop software for a wide range of application domains.


Emphasises code readability

Code readability refers to how easy it is for a human to read and comprehend code.


Uses significant indentation

Indentation refers to having space at the beginning of a line of code.


Python is dynamically typed

In programming languages like C, when you declare a variable, you also set the type for that variable, and the type of that variable cannot be changed during execution.


Python is garbage collected

Garbage collection is a process of automatic memory management.