raw_input和超时

时间:2010-08-12 19:48:15

标签: python loops raw-input

我想做raw_input('Enter something: .')。我希望它睡3秒钟,如果没有输入,则取消提示并运行其余代码。然后代码循环并再次实现raw_input。如果用户输入类似“q”的内容,我也希望它能够破解。

4 个答案:

答案 0 :(得分:53)

有一个不使用线程的简单解决方案(至少没有明确说明):使用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..."

编辑[0]:​​显然是won't work on Windows,因为select()的底层实现需要一个套接字,而sys.stdin则不需要。{感谢单挑,@ Fookatchu。

答案 1 :(得分:12)

如果您正在使用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 

答案 2 :(得分:2)

我有一些代码可以使用tkinter输入框和按钮制作倒计时应用程序,这样他们就可以输入内容并按下按钮,如果计时器用完,tkinter窗口关闭并告诉他们时间已经用完了。 我认为这个问题的大多数其他解决方案都没有弹出的窗口,因此我认为id添加到列表中:)

使用raw_input()或input(),它在输入部分停止时是不可能的,直到它接收到输入,然后继续...

我从以下链接中获取了一些代码: Making a countdown timer with 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

答案 3 :(得分:1)

对于rbp的回答:

要考虑等于回车符的输入,只需添加嵌套条件:

if rlist:
    s = sys.stdin.readline()
    print s
    if s == '':
        s = pycreatordefaultvalue