是的,请使用选择模块的民意调查:
import selectq = select.poll()q.register(stdout,select.POLLIN)
并在一段时间内使用:
l = q.poll(0)if not l: pass # no inputelse: pass # there is some input
欢迎分享,转载请注明来源:内存溢出
是的,请使用选择模块的民意调查:
import selectq = select.poll()q.register(stdout,select.POLLIN)
并在一段时间内使用:
l = q.poll(0)if not l: pass # no inputelse: pass # there is some input
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)