1

我已经不知道 python 中的 msvcrt.kbhit() 如何在我单击需要按下的指定键后立即打印出数据。看起来while循环需要再次循环才能打印出我想要的输出。有人可以帮帮我吗。这是我的代码:

def run(self):
    global state
    print "\nClient connection received!\n"
    self.channel.send("Status: Server connection received")
    while 1:
        ctr = 1
        while 1:
            self.clientmess = self.channel.recv(Buffer)
            if msvcrt.kbhit():
                if msvcrt.getch() == 's':
                    print "stop"
                    break
    #the codes belo is what i will want for self.clientmess will be so its not necessary I think to put
4

1 回答 1

1

大多数情况下,您的程序会阻塞recv调用,因此在收到一些数据之前,它不会执行kbhit+ getch。如果您需要立即处理键盘输入,您可能需要使套接字成为非阻塞并在循环中轮询套接字和键盘,并在它们出现时处理来自它们的数据。

于 2013-03-20T15:03:27.153 回答