Wednesday, February 21, 2024

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.To access the Python interpreter in interactive mode, open a terminal and type `python` or `python3` (depending on your installation). 

1. इंटरएक्टिव मोड: - इस मोड में हम स्क्रिप्ट निर्दिष्ट किए बिना अपने टर्मिनल या कमांड प्रॉम्प्ट में पायथन इंटरप्रेटर लॉन्च कर सकते हैं। यह मोड हमें पायथन कमांड दर्ज करने और तत्काल परिणाम देखने की अनुमति देता है। इंटरैक्टिव मोड में पायथन इंटरप्रेटर तक पहुंचने के लिए, एक खोलें टर्मिनल और टाइप करें `पाइथन` या `पाइथन3` (आपके इंस्टॉलेशन के आधार पर)।
>>>2+5
7
>>> 4**2
16
>>>

2. Script Mode:- In this mode we can create Python scripts with a ".py" file extension containing a sequence of Python commands and Execute the script by running the Python interpreter followed by the script's filename. For script mode, create a Python script using a text editor, and then run it with the python script.py command. We can also use short cut key (F5) to run Python Script.
2. स्क्रिप्ट मोड: - इस मोड में हम ".py" फ़ाइल एक्सटेंशन के साथ पायथन स्क्रिप्ट बना सकते हैं जिसमें पायथन कमांड का अनुक्रम होता है और स्क्रिप्ट के फ़ाइल नाम के बाद पायथन इंटरप्रेटर चलाकर स्क्रिप्ट को निष्पादित कर सकते हैं। स्क्रिप्ट मोड के लिए, टेक्स्ट एडिटर का उपयोग करके एक पायथन स्क्रिप्ट बनाएं, और फिर इसे पायथन स्क्रिप्ट.py कमांड के साथ चलाएं। Python Script को चलाने के लिए हम शॉर्टकट कुंजी (F5) का भी उपयोग कर सकते हैं।

SumOfTwo.py 

a=int(input("Enter First Number"))
b=int(input("Enter Second Number"))
sum=a+b
print("Sum of",a,"and",b, "is=",sum)




No comments:

Post a Comment

Input and Output statements in Python

In Python, input and output are handled using built-in functions input() and print(). पायथन में, इनपुट और आउटपुट को अंतर्निहित फ़ंक्शन इनपुट...