Features of python
- When we read python program, we can feel like reading English statements.
- Simple syntaxes.
- Very less number of lines as compared with other languages.
- More readability and simplicity.
- We can reduce development cost of the project.
- We can use python without any license and it's freeware.
- no need to pay single paisa for using software.
- It is programmer friendly language.
- Being a programmer we are not required to concentrate low level activities like memory management and security etc.
- Data type is does not matter. whenever we are assigning the value, based on value type will be allocate automatically.
- Being a programmer not required to compile python program. internally python interpreter will take care that compilation.
- An interpreter is a program that reads and execute code line by line.
Identifiers:
- Alphabet symbols it may be UPPER CASE or lower case.
- Identifier should not start with Digits.
- Identifiers are case sensitive.
>>> a = 10>>> A = 20>>> print(a)10>>> print(A)20
4. We can not use reserved word as identifiers.
DATA TYPES IN PYTHON
Fundamental Data Types:
- int
- float
- complex
- bool
- str
Collection Data Types:
- bytes
- bytesarray
- range
- list
- tuple
- set
- frozonset
- dict
- None

