raw_input('Enter something: .')
をやりたいです。 3秒間スリープさせ、入力がない場合は、プロンプトをキャンセルして残りのコードを実行します。次に、コードがループし、raw_input
を再度実装します。また、ユーザーが 'q'のようなものを入力した場合にも壊れるようにします。
スレッドを使用しない簡単な解決策があります(少なくとも明示的には): select を使用して、stdinから読み取るものがあるかどうかを確認します。
import sys
from select import select
timeout = 10
print "Enter something:",
rlist, _, _ = select([sys.stdin], [], [], timeout)
if rlist:
s = sys.stdin.readline()
print s
else:
print "No input. Moving on..."
Edit [0]:明らかにこれは Windowsでは機能しません です。select()の基礎となる実装にはソケットが必要で、sys.stdinはそうではないためです。ヘッドアップをありがとう、@ Fookatchu。
Windowsで作業している場合は、以下を試すことができます。
import sys, time, msvcrt
def readInput( caption, default, timeout = 5):
start_time = time.time()
sys.stdout.write('%s(%s):'%(caption, default));
input = ''
while True:
if msvcrt.kbhit():
chr = msvcrt.getche()
if ord(chr) == 13: # enter_key
break
Elif ord(chr) >= 32: #space_char
input += chr
if len(input) == 0 and (time.time() - start_time) > timeout:
break
print '' # needed to move to next line
if len(input) > 0:
return input
else:
return default
# and some examples of usage
ans = readInput('Please type a name', 'john')
print 'The name is %s' % ans
ans = readInput('Please enter a number', 10 )
print 'The number is %s' % ans
タイマーがtkinterウィンドウを閉じて時間切れになったことを通知すると、tkinterエントリボックスとボタンを備えたカウントダウンアプリを作成して、何かを入力してボタンを押すことができるようにするコードがあります。この問題に対する他のほとんどの解決策には、ポップアップウィンドウが表示されないので、IDをリストに追加すると思います:)
raw_input()またはinput()の場合、入力を受け取るまで入力セクションで停止するため、入力を受け取ることができません。
私は次のリンクからいくつかのコードを取得しました: Python and Tkinter?
この問題に対するBrian Oakleyの回答を使用して、エントリーボックスなどを追加しました。
import tkinter as tk
class ExampleApp(tk.Tk):
def __init__(self):
tk.Tk.__init__(self)
def well():
whatis = entrybox.get()
if whatis == "": # Here you can check for what the input should be, e.g. letters only etc.
print ("You didn't enter anything...")
else:
print ("AWESOME WORK DUDE")
app.destroy()
global label2
label2 = tk.Button(text = "quick, enter something and click here (the countdown timer is below)", command = well)
label2.pack()
entrybox = tk.Entry()
entrybox.pack()
self.label = tk.Label(self, text="", width=10)
self.label.pack()
self.remaining = 0
self.countdown(10)
def countdown(self, remaining = None):
if remaining is not None:
self.remaining = remaining
if self.remaining <= 0:
app.destroy()
print ("OUT OF TIME")
else:
self.label.configure(text="%d" % self.remaining)
self.remaining = self.remaining - 1
self.after(1000, self.countdown)
if __name__ == "__main__":
app = ExampleApp()
app.mainloop()
私が追加したものは少し怠惰でしたが、それは機能し、それは単なる例です
このコードはPyscripter 3.3を使用するWindowsで動作します
Rbpの答え:
キャリッジリターンに等しい入力を説明するには、ネストされた条件を追加するだけです。
if rlist:
s = sys.stdin.readline()
print s
if s == '':
s = pycreatordefaultvalue