Variables In Python

Variables In Python

A variable is the name of the location in the memory. It has three attributes:

1. Name

2. Address

3. Value


Variables In Python

How To Use Variable In Python


Variable name = value


Unlike C where you have to declare data type, you don't need to specify the data type of variable in python. This is called as dynamically typed language. You can use the same variable for different data types.


Also you can't just declare a variable in python you need to initialize some value.


Multiple Assignments of Variable


a, b, c = 1, 2, 3
print(a,b,c)

We will look in detail about print and input function in next post.


Input And Output In Python
Load comments