Variable
In C, Java or some other programming languages, a variable is an identifier or
a name, connected to memory location.
a = 30
10 b = 10 c = 20
a b c
10
30 10 20
12114 12115 12117
y=a
y
30
12678
, Variable
In Python, a variable is considered as tag that is tied to some value. Python
considers value as objects.
a = 10 b = 10 a = 20
a b a
10 10 20
12114 12115 12117
y=a
y
20
12678
In C, Java or some other programming languages, a variable is an identifier or
a name, connected to memory location.
a = 30
10 b = 10 c = 20
a b c
10
30 10 20
12114 12115 12117
y=a
y
30
12678
, Variable
In Python, a variable is considered as tag that is tied to some value. Python
considers value as objects.
a = 10 b = 10 a = 20
a b a
10 10 20
12114 12115 12117
y=a
y
20
12678