Variables in python पायथन में वेरिएबल

In Python, variables are used to store and manage data/values. You can create a variable by assigning a value to it. For example:
पायथन में, वेरिएबल्स का उपयोग डेटा/मानों को संग्रहीत और प्रबंधित करने के लिए किया जाता है। आप इसमें एक मान निर्दिष्ट करके एक वेरिएबल बना सकते हैं। उदाहरण के लिए:

my_variable = 50

Here, `my_variable` is a variable storing the value `50`.
यहां, `my_variable` `50` मान संग्रहीत करने वाला एक वैरिएबल है।

Variable names are case-sensitive and can include letters, numbers, and underscores, but they must start with a letter(a to z, A to Z) or underscore(_).
परिवर्तनीय नाम केस-संवेदी होते हैं और उनमें अक्षर, संख्याएं और अंडरस्कोर शामिल हो सकते हैं, लेकिन उन्हें अक्षर (a से z, A से Z) या अंडरस्कोर (_) से शुरू होना चाहिए।

In Python, We can reassign variables with new values of any type:
पायथन में, हम किसी भी प्रकार के नए मानों के साथ वेरिएबल्स को पुन: असाइन कर सकते हैं:

my_variable = "Hello, Python!"
Now, `my_variable` contains the string "Hello, Python!".
अब, `my_variable` में "Hello, Python!" स्ट्रिंग शामिल है।

As we know, Python is dynamically typed, meaning you don't need to declare the variable type explicitly; it is inferred based on the assigned value.
जैसा कि हम जानते हैं, पायथन गतिशील रूप से टाइप किया गया है, जिसका अर्थ है कि आपको चर प्रकार को स्पष्ट रूप से घोषित करने की आवश्यकता नहीं है; इसका अनुमान निर्दिष्ट मान के आधार पर लगाया जाता है।

No comments:

Post a Comment