web-dev-qa-db-ja.com

キーボード入力を読むには?

私はpythonでキーボードからデータを読みたいです

私はこれを試します:

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

しかし、Eclipseでも端末でも機能しません。常に問題となるのは止まります。数字を入力することはできますが、何も起こりません。

なぜなのかご存知ですか?

115
tranen

やってみる

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"
118
sharpner

ここでは異なるPythonを混在させているようです(Python 2.xとPython 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")

フォーマットを使って数字を印刷したい場合は、Python 3ではstr.format()を推奨します。

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

の代わりに:

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

しかし、両方のオプション(str.format()%)はPython 2.7とPython 3の両方で機能します。

83
Baltasarq

ノンブロッキング、マルチスレッドの例:

キーボード入力をブロックするのは(input()ファンクションブロックなので)頻繁にnotにしたいのですが(他のことをやり続けたいのですが)、ここに 非常に削除されたマルチスレッドの例 デモのために キーボード入力が届くたびにキーボード入力を読みながらメインアプリケーションを実行し続ける方法

これは、バックグラウンドで実行するスレッドを1つ作成し、継続的にinput()を呼び出し、受信したデータをキューに渡すことによって機能します。

このようにして、あなたのメインスレッドは、キューに何かがあるときはいつでも最初のスレッドからキーボード入力データを受け取る、それが望むことをするために残されます。

1.裸のPython 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 (__== '__main__'): 
    main()

2.上記と同じPython 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
- https://stackoverflow.com/questions/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 (__== '__main__'): 
    main()

出力例:

$ python3 read_keyboard_input.py
キーボード入力の準備ができました:
ねえ
input_str =ちょっと
こんにちは
input_str = hello
7000
input_str = 7000
出口
input_str =終了
シリアル端末を終了しています。
終わり。

参考文献:

  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/Threading
  4. Python:スーパークラスからサブクラスを作るにはどうすればいいですか?
  5. https://docs.python.org/3/library/queue.html
  6. https://docs.python.org/3.7/library/threading.html
8
Gabriel Staples

これはうまくいくはずです

yourvar = input('Choose a number: ')
print('you entered: ' + yourvar)
4
Antoine

input([Prompt])eval(raw_input(Prompt))と同等で、Python 2.6以降で利用可能です。

安全ではないので(evalのため)、raw_inputは重要なアプリケーションには推奨されるべきです。

4
jeanM