You are on page 1of 1

What is Python?

Python is an interpreted high-level general-purpose programming language.

Where we use Python?

Python is used for web development, AI, machine learning, operating systems,


mobile application development, and video games.

why data scientists use python?


Python enables quick improvement and can interface with high-performance
algorithms written in Fortran or C.

Identifiers?
Identifiers are the values used to define different programming items such as
variables, integers, structures, unions and others and mostly have an alphabetic
character

Identation?
Indentation is a very important concept of Python because without proper
indenting the Python code, you will end up seeing IndentationError and the
code will not get compiled.
In simple terms indentation refers to adding white space before a statement.

Lambda Functions:
Lambda functions are used when you need a function for a short period of time.
This is commonly used when you want to pass a function as an argument to higher-
order functions, that is, functions that take other functions as their arguments.
Type equation here .

You might also like