Variables
Variables
VARIABLES
Python trainer :
Chenna Kesava Rao Ramisetti
variables
• variables are containers to store any type of data.
• In python, variables are dynamically typed.
• Python automatically allocates memory for the variable
in system.
Variable
contains data
Declaration and Initialization
• The process of creating variable is called declaration.
• The process of assigning data to variable is called
initialization.
• In python, declaration and initialization are done at the
same time.
Num = 72
Rules to create variable name
Combination of alphabetics and numbers.