What is Variable:-
Variable एक ऐसा नाम होता है जिसमें value को store किया जाता है मेमोरी में value को स्टोर करने के लिए variable का प्रयोग किया जाता है। python में variable को identifier भी कहा जाता है। Variable पर कोई भी data type की value store की जा सकती है। जैसे कि, Number, string, list, tuple, dictionary
Assigning Value to Variable
Python में declaration की जरुरत नही होती है। जब variable पर value assign होती है तब automatically declaration होता है। declaration न होने के कारण Python में variable की default value नही होती है।
For Example
a=5 #Number b=”Hello” #string c=[2,4,6] #list print(a,b,c) Output 5 Hello [2, 4, 6] |
Changing Variable’s Value
Python में variable की value change या re-assign की जा सकती है।
Example
a=5 print(a) a=”Hello” print(a) a=[2,4,6] print(a) |
Output
5 Hello [2, 4, 6] |
Assigning Single Value to Multiple Variables
Python में एक ही value एक से ज्यादा variables पर assign की जा सकती है।
Example
a=b=c=d=”hello” print(a) print(b) print(c) print(d) |
Output hello hello hello hello |
Assigning Value to Variable according to order
Python में क्रमनुसार variable पर value store की जाती है। Example पर एक ही memory location multiple variables और उनकी values assign की गयी है।
Example
a, b, c = 1, ‘H’, [1, 2] print(a) print(b) print(c) |
Output
1 H [1, 2] |
Variables Concatenation
Python में एक ही data types के variables concatenate किए जा सकते है। Example पर str() function का इस्तेमाल object को integer से string में convert करने के लिए किया गया है।
Example
a = 1 b = 2 print(a + b) print(str(a) + str(b)) c = “Hello” print(str(a) + c |
Output
3 12 1Hello
|
What is Variable:-
Variable is a name in which value is stored. Variable is used to store value in memory. In python, variable is also called identifier. Value of any data type can be stored on variable. Like, Number, string, list, tuple, and dictionary
Assigning Value to Variable
There is no need for declaration in Python. Declaration occurs automatically when a value is assigned to a variable. Due to lack of declaration, variables in Python do not have a default value
. For Example,
a=5 #Number b=”Hello” #string c=[2,4,6] #list print(a,b,c) Output 5 Hello [2, 4, 6] |
Changing Variable’s Value:-
In Python the value of a variable can be changed or re-assigned.
Example:
a=5 print(a) a=”Hello” print(a) a=[2,4,6] print(a |
Output
5 Hello [2, 4, 6] |
Assigning Single Value to Multiple Variables
In Python, the same value can be assigned to more than one variable.
a=b=c=d=”hello” print(a) print(b) print(c) print(d) |
Output hello hello hello hello |
Assigning Value to Variable according to order
In Python, values are stored in variables sequentially.For example, multiple variables and their values have been assigned to the same memory location.
a, b, c = 1, ‘H’, [1, 2] print(a) print(b) print(c) |
Output
1 H [1, 2] |
Variables Concatenation
In Python, variables of the same data types can be concatenated.In the example str() function has been used to convert object from integer to string.
a = 1 b = 2 print(a + b) print(str(a) + str(b)) c = “Hello” print(str(a) + c)
|
Output
3 12 1Hello
|