DEV Community

DDSRY
DDSRY

Posted on • Updated on

What is Variable in Python Programming Language ?

Variable in Python:

▪ Variable is a Container where you can put your values.

eg: a=3

▪ a is a name of a variable and 3 value is stored in Variable Container.

print() is use to print to value of a variable.

▪ In variable we can change value of a variable.

▪ In Python we do not have to Declare / Define Variable.

Top comments (0)