Header Ads Widget

Responsive Advertisement

Ticker

6/recent/ticker-posts

Python class 5 hindi ( Python veriables ) sabse asaan bhasha me

 


Python Variables

Variables का उपयोग कर python में data को store या hold किया जाता है। Python में variables को declare किये बिना ही उपयोग किया जा सकता है।

age = 20

variable के नाम रखने के नियम

  1. variable का नाम underscore या letter से शरू होना चाहिए।
  2. variable का नाम नंबर से शरू नहीं कर सकते है।
  3. case sensitive होते है variable के नाम python में।
  4. 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)

Comments are closed.


एक टिप्पणी भेजें

1 टिप्पणियाँ

If you have any doubt. Please let me know