BASICS OF PYTHON:

  1. Features Of Python
  2. Variables
  3. Data Types
  4. Operators
  5. Control Statements
  6. Looping Statements
  7. List
  8. Applications

Features Of Python

Variables:

A variable is a name of the memory location. It is used to store data. Its value can be changed, and it can be reused many times.

Rules:

Types:

  1. Local variable
  2. Instance variable
  3. Static variable

Data Types:

A Data type specifies the type of data that a variable can store.

Types:

NUMERIC DICTIONARY BOOLEAN SET SEQUENCE TYPE
integer strings
complex number list
float tuble

Operators:

An Operator is simply a symbol that is used to perform operations.

Types:

Control Statements:

A Control Statement is used to check the conditon.

Types:

Looping Statements:

The Looping can be defined as repeating the same process multiple times until a specific condition satisfies. There are three types of loops used in the Python language.

Types:

List:

A List in Python is used to store the sequence of various types of data. Python lists are mutable type its mean we can modify its element after it created. However, Python consists of six data-types that are capable to store the sequences, but the most common and reliable type is the list.

Characteristics:

Applications: