कीबोर्ड-इनपुट कैसे पढ़ें?


123

मैं अजगर से कीबोर्ड से डेटा पढ़ना चाहूंगा

मैं यह कोशिश करता हूं:

nb = input('Choose a number')
print ('Number%s \n' % (nb))

लेकिन यह काम नहीं करता है, न तो ग्रहण के साथ और न ही टर्मिनल में, यह हमेशा सवाल का ठहराव है। मैं एक नंबर टाइप कर सकता हूं लेकिन कुछ नहीं होने के बाद।

तुम जानते हो क्यों?


12
मुझे पूरा यकीन है कि ओपी एक नंबर दर्ज करने के बाद रिटर्न प्रेस करना भूल गया, और कोई भी जवाब वास्तव में सवाल का जवाब नहीं देता है।
एरन-फे

जवाबों:


127

प्रयत्न

raw_input('Enter your input:')  # If you use Python 2
input('Enter your input:')      # If you use Python 3

और यदि आप एक सांख्यिक मान चाहते हैं तो इसे परिवर्तित करें:

try:
    mode=int(raw_input('Input:'))
except ValueError:
    print "Not a number"

2
गैर-अवरुद्ध बहु-थ्रेडेड संस्करण, इसलिए आप कीबोर्ड इनपुट पर अवरुद्ध होने के बजाय सामान रख सकते हैं: stackoverflow.com/a/53344690/4561887
गेब्रियल स्टेपल्स

84

ऐसा लगता है कि आप यहां विभिन्न पायथन मिश्रण कर रहे हैं (अजगर 2.x बनाम पायथन 3.x) ... यह मूल रूप से सही है:

nb = input('Choose a number: ')

समस्या यह है कि यह केवल Python 3 में समर्थित है। जैसा कि @sharpner ने उत्तर दिया, Python (2.x) के पुराने संस्करणों के लिए, आपको फ़ंक्शन का उपयोग करना होगा raw_input:

nb = raw_input('Choose a number: ')

यदि आप उसे किसी संख्या में बदलना चाहते हैं, तो आपको प्रयास करना चाहिए:

number = int(nb)

... हालाँकि आपको इस बात का ध्यान रखना होगा कि यह एक अपवाद को बढ़ा सकता है:

try:
    number = int(nb)
except ValueError:
    print("Invalid number")

और यदि आप स्वरूपण का उपयोग करके संख्या को प्रिंट करना चाहते हैं, तो पायथन 3 str.format()में सिफारिश की गई है:

print("Number: {0}\n".format(number))

के बजाय:

print('Number %s \n' % (nb))

लेकिन दोनों विकल्प ( str.format()और %) पायथन 2.7 और पायथन 3 दोनों में काम करते हैं।


1
हमेशा spaceअपने इनपुट के बाद उपयोगकर्ता को अपने इनपुट को दर्ज करें ताकि शांति हो। Enter Tel12340404बनाम Enter Tel: 12340404। देख! : पी
मेहरद

किया हुआ। सलाह के लिये धन्यवाद।
बाल्टासर्क

15

गैर-अवरुद्ध, बहु-थ्रेडेड उदाहरण:

कीबोर्ड इनपुट पर अवरुद्ध होने के बाद से ( input()फंक्शन ब्लॉक) अक्सर ऐसा नहीं होता है कि हम क्या करना चाहते हैं (हम अक्सर अन्य सामान रखना पसंद करेंगे), यहाँ एक बहुत ही अलग-थलग किया हुआ बहु-थ्रेडेड उदाहरण है जो यह बताता है कि आप को कैसे चलाना है। जब भी वे आते हैं, तो कीबोर्ड इनपुट में पढ़ते समय मुख्य अनुप्रयोग

यह पृष्ठभूमि में चलने के लिए एक थ्रेड बनाकर काम करता है, लगातार कॉल करता है input()और फिर किसी भी डेटा को एक कतार में भेज देता है।

इस तरह, आपका मुख्य धागा कुछ भी करने के लिए बचा हुआ है, पहले इनपुट से कीबोर्ड इनपुट डेटा प्राप्त करना जब भी कतार में कुछ होता है।

1. नंगे पायथन 3 कोड उदाहरण (कोई टिप्पणी नहीं):

import threading
import queue
import time

def read_kbd_input(inputQueue):
    print('Ready for keyboard input:')
    while (True):
        input_str = input()
        inputQueue.put(input_str)

def main():
    EXIT_COMMAND = "exit"
    inputQueue = queue.Queue()

    inputThread = threading.Thread(target=read_kbd_input, args=(inputQueue,), daemon=True)
    inputThread.start()

    while (True):
        if (inputQueue.qsize() > 0):
            input_str = inputQueue.get()
            print("input_str = {}".format(input_str))

            if (input_str == EXIT_COMMAND):
                print("Exiting serial terminal.")
                break

            # Insert your code here to do whatever you want with the input_str.

        # The rest of your program goes here.

        time.sleep(0.01) 
    print("End.")

if (__name__ == '__main__'): 
    main()

2. समान पायथन 3 कोड ऊपर के रूप में, लेकिन व्यापक व्याख्यात्मक टिप्पणियों के साथ:

"""
read_keyboard_input.py

Gabriel Staples
www.ElectricRCAircraftGuy.com
14 Nov. 2018

References:
- https://pyserial.readthedocs.io/en/latest/pyserial_api.html
- *****https://www.tutorialspoint.com/python/python_multithreading.htm
- *****https://en.wikibooks.org/wiki/Python_Programming/Threading
- /programming/1607612/python-how-do-i-make-a-subclass-from-a-superclass
- https://docs.python.org/3/library/queue.html
- https://docs.python.org/3.7/library/threading.html

To install PySerial: `sudo python3 -m pip install pyserial`

To run this program: `python3 this_filename.py`

"""

import threading
import queue
import time

def read_kbd_input(inputQueue):
    print('Ready for keyboard input:')
    while (True):
        # Receive keyboard input from user.
        input_str = input()

        # Enqueue this input string.
        # Note: Lock not required here since we are only calling a single Queue method, not a sequence of them 
        # which would otherwise need to be treated as one atomic operation.
        inputQueue.put(input_str)

def main():

    EXIT_COMMAND = "exit" # Command to exit this program

    # The following threading lock is required only if you need to enforce atomic access to a chunk of multiple queue
    # method calls in a row.  Use this if you have such a need, as follows:
    # 1. Pass queueLock as an input parameter to whichever function requires it.
    # 2. Call queueLock.acquire() to obtain the lock.
    # 3. Do your series of queue calls which need to be treated as one big atomic operation, such as calling
    # inputQueue.qsize(), followed by inputQueue.put(), for example.
    # 4. Call queueLock.release() to release the lock.
    # queueLock = threading.Lock() 

    #Keyboard input queue to pass data from the thread reading the keyboard inputs to the main thread.
    inputQueue = queue.Queue()

    # Create & start a thread to read keyboard inputs.
    # Set daemon to True to auto-kill this thread when all other non-daemonic threads are exited. This is desired since
    # this thread has no cleanup to do, which would otherwise require a more graceful approach to clean up then exit.
    inputThread = threading.Thread(target=read_kbd_input, args=(inputQueue,), daemon=True)
    inputThread.start()

    # Main loop
    while (True):

        # Read keyboard inputs
        # Note: if this queue were being read in multiple places we would need to use the queueLock above to ensure
        # multi-method-call atomic access. Since this is the only place we are removing from the queue, however, in this
        # example program, no locks are required.
        if (inputQueue.qsize() > 0):
            input_str = inputQueue.get()
            print("input_str = {}".format(input_str))

            if (input_str == EXIT_COMMAND):
                print("Exiting serial terminal.")
                break # exit the while loop

            # Insert your code here to do whatever you want with the input_str.

        # The rest of your program goes here.

        # Sleep for a short time to prevent this thread from sucking up all of your CPU resources on your PC.
        time.sleep(0.01) 

    print("End.")

# If you run this Python file directly (ex: via `python3 this_filename.py`), do the following:
if (__name__ == '__main__'): 
    main()

नमूना उत्पादन:

$ python3 read_keyboard_input.py
कीबोर्ड इनपुट के लिए तैयार:
hey
input_str = hey
hello
input_str = hello
7000
input_str = 7000
exit
input_str = exit
सीरियल टर्मिनल से बाहर निकलें ।
समाप्त।

संदर्भ:

  1. https://pyserial.readthedocs.io/en/latest/pyserial_api.html
  2. ***** https://www.tutorialspoint.com/python/python_multithreading.htm
  3. ***** https://en.wikibooks.org/wiki/Python_Programming/ थ्रेडिंग
  4. अजगर: मैं सुपरक्लास से उपवर्ग कैसे बनाऊं?
  5. https://docs.python.org/3/library/queue.html
  6. https://docs.python.org/3.7/library/threading.html

संबंधित / पार लिंक किया गया:

  1. PySerial नॉन-ब्लॉकिंग रीड लूप

4

input([prompt])eval(raw_input(prompt))अजगर 2.6 के बाद से बराबर और उपलब्ध है

चूंकि यह असुरक्षित (निष्कासन के कारण) है, महत्वपूर्ण अनुप्रयोगों के लिए raw_input को प्राथमिकता दी जानी चाहिए।


1
जानकारी के उस दिलचस्प tidbit के लिए +1, हालांकि मैं इसे ध्वजांकित कर रहा हूं क्योंकि यह वास्तव में प्रश्न या उत्तर पर एक टिप्पणी के रूप में सूचीबद्ध होने के लिए उपयुक्त है क्योंकि यह वास्तव में एक उत्तर नहीं है।
ArtOfWarfare

3
यह केवल पायथन 2.x पर भी लागू होता है। पायथन 3.x में। raw_inputका नाम बदल दिया गया था inputऔर इसका कोई सबूत नहीं है।
जेसन एस

1
यह प्रश्न का उत्तर प्रदान नहीं करता है। किसी लेखक से स्पष्टीकरण मांगने या उसका अनुरोध करने के लिए, उनके पोस्ट के नीचे एक टिप्पणी छोड़ दें।
एरिक स्टीन

@ एरिकसेटिन - मेरे झंडे को अस्वीकार कर दिया गया था, और कुछ प्रतिबिंब के बाद, मैं सहमत हूं कि मैंने बहुत जल्दबाजी में झंडी दिखाई। इसे देखें: meta.stackexchange.com/questions/225370/…
ArtOfWarfare

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.