Input and Output statements in Python पायथन में इनपुट और आउटपुट स्टेटमेंट

In Python, input and output are handled using built-in functions input() and print().

पायथन में, इनपुट और आउटपुट को अंतर्निहित फ़ंक्शन इनपुट() और प्रिंट() का उपयोग करके नियंत्रित किया जाता है।


1.) input():-

To take input from the user, we can use the `input()` function. This function reads a line usually from a standard input device (keyboard) and returns it as a string to a variable. By default, `input()` returns data as a string, so if we need an integer or a float, we must convert it by type conversion.

1.) इनपुट():-

उपयोगकर्ता से इनपुट लेने के लिए, हम `इनपुट()` फ़ंक्शन का उपयोग कर सकते हैं। यह फ़ंक्शन आमतौर पर एक मानक इनपुट डिवाइस (कीबोर्ड) से एक लाइन पढ़ता है और इसे एक स्ट्रिंग के रूप में एक वेरिएबल में लौटाता है। डिफ़ॉल्ट रूप से, `इनपुट()` डेटा को एक स्ट्रिंग के रूप में लौटाता है, इसलिए यदि हमें इंटीजर या फ्लोट की आवश्यकता है, तो हमें इसे टाईप कन्वर्जन द्वारा परिवर्तित करना होगा।


2.) print():-

To display output to the user, we can use the `print()` function.

2.) प्रिंट():- 

उपयोगकर्ता को आउटपुट प्रदर्शित करने के लिए, हम `प्रिंट()` फ़ंक्शन का उपयोग कर सकते हैं। 


Example 1:

#By default string input:-

name = input("Enter your name: ") #name=Rahul

print("Hello, " + name) #Hello, Rahul


Example 2:

#integer input:-

num = int(input("Enter a number: ")) #num= 100

print("You entered:", num)

#You entered: 100


Example 3:

#floating point input:-

pi = float(input("Enter a value of PI: ")) #pi=3.14

print("You entered:", pi)

#You entered: 3.14

 

No comments:

Post a Comment