Python Variables
Variables का उपयोग कर python में data को store या hold किया जाता है। Python में variables को declare किये बिना ही उपयोग किया जा सकता है।
age = 20
variable के नाम रखने के नियम
- variable का नाम underscore या letter से शरू होना चाहिए।
- variable का नाम नंबर से शरू नहीं कर सकते है।
- case sensitive होते है variable के नाम python में।
- variable के नाम में alpha-numeric characters व underscore ही उपयोग किये जा सकते है।
Assign value to variable
age = 25
name = "Microsoft"
PI = 3.14
Print/Output variable value
age = 25
name = "Microsoft"
PI = 3.14
print(age)
print(name)
print(PI)
1 टिप्पणियाँ
Nice
जवाब देंहटाएंIf you have any doubt. Please let me know