Skip to main content

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.
जैसा कि हम जानते हैं, पायथन गतिशील रूप से टाइप किया गया है, जिसका अर्थ है कि आपको चर प्रकार को स्पष्ट रूप से घोषित करने की आवश्यकता नहीं है; इसका अनुमान निर्दिष्ट मान के आधार पर लगाया जाता है।

Comments

Popular posts from this blog

Filter function of python

filter function:-  Imagine we have a bunch of things, like a list of numbers, a collection of fruits, or any other group of items. Now, let's say we want to pick out only certain items from that group based on a specific condition. This is where the filter function comes in handy. Let's say we have a list of numbers, and we want to filter out only the even numbers. We define a condition-checking function that checks if a number is even. Then, we pass this function and the list of numbers to the filter function. It goes through each number, applies the condition-checking function, and keeps only the numbers that are even. Finally, it gives us a new list containing only the even numbers. def is_even(num):     return num % 2 == 0 numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] filtered_numbers = list(filter(is_even, numbers)) print(filtered_numbers) Output [2, 4, 6, 8, 10] We can also utilize lambda expressions to define filtering conditions directly within the filter function. nu...

The Python Interpreter पायथन इंटरप्रेटर

The Python interpreter is a program that executes Python code. It reads and interprets Python scripts or interactive commands, converting them into machine-readable bytecode for the computer to execute.The interpreter is a crucial component for running Python code, facilitating both learning and development processes. Users can interact with the interpreter in two primary modes: पायथन इंटरप्रेटर एक प्रोग्राम है जो पायथन कोड को निष्पादित करता है। यह पायथन स्क्रिप्ट या इंटरैक्टिव कमांड को पढ़ता है और व्याख्या करता है, उन्हें कंप्यूटर द्वारा निष्पादित करने के लिए मशीन-पठनीय बाइटकोड में परिवर्तित करता है। दुभाषिया पायथन कोड चलाने के लिए एक महत्वपूर्ण घटक है, जो सीखने और विकास दोनों प्रक्रियाओं को सुविधाजनक बनाता है। उपयोगकर्ता इंटरप्रेटर के साथ दो प्राथमिक मोड में बातचीत कर सकते हैं:- 1. Interactive Mode:- In this mode we can launch the Python interpreter in our terminal or command prompt without specifying a script.This mode allows us to enter Python commands and see immediate results...

Lambda Function of Python पायथन में लैम्ब्डा फ़ंक्शंस

Lambda functions, also known as anonymous functions that are one-line functions without a name. They are defined using the lambda keyword and are primarily used when a small function is required for a short period. Lambda functions can take any number of arguments but can only have a single expression. लैम्ब्डा फ़ंक्शंस, जिन्हें अनाम फ़ंक्शंस के रूप में भी जाना जाता है, जो बिना नाम के एक-पंक्ति फ़ंक्शंस हैं। उन्हें लैम्ब्डा कीवर्ड का उपयोग करके परिभाषित किया गया है और मुख्य रूप से तब उपयोग किया जाता है जब छोटी अवधि के लिए एक छोटे फ़ंक्शन की आवश्यकता होती है। लैम्ब्डा फ़ंक्शंस किसी भी संख्या में तर्क ले सकते हैं लेकिन केवल एक ही अभिव्यक्ति हो सकती है। Syntax:- lambda arguments: expression Example:- double = lambda x: x * 2 print(double(5))  #Output=10 sum = lambda a, b: a + b print(sum(3, 4))  #Output=7