The python variables is a container store the some value inside the program after that value a access . the variable value can change during the run time . example the variable is a box then store the some items inside the box later we identify the box name and use that item like this. The variables is very Important part in python program . It is a technique to store the value inside the program .
The python variable no need to declare the data type explicitly . the interpreter understand that variable value and give the output . directly initial the value using = (equal sign) to assign the variable value.
The variable access using the variable name . first we can assign the value to the variable.anywhere in te variable
In python programming allows a declare or initialize the single value assigned to multiple variables. in single line that is shown below.
python supports concatenation of variable like decimal, Binary,Octal, Hexadecimal,Float,boolean using + operator. python string also but the python won't support the string Concatenating with Integer the python interpreter gives error. that is shown below
The python allow to delect the variable by using del keyword syntax del variable name