控制台应用程序中的非阻塞用户输入
在构建需要与其他进程同时进行用户输入的控制台应用程序时,必须具有非阻塞性- 阻止输入以防止程序在等待输入时冻结。
使用 msvcrt模块(Windows)
对于 Windows 独有的控制台应用程序,msvcrt 模块提供了一个简单的解决方案:
import msvcrt # Define variables num = 0 done = False # Infinite loop while not done: # Print and increment number print(num) num += 1 # Check for keyboard input if msvcrt.kbhit(): # Display pressed key and quit pressed_key = msvcrt.getch() print("You pressed", pressed_key, "so now I will quit") done = True
使用 termios 模块(Linux)
对于基于 Linux 的控制台应用程序,termios 模块可以是利用:
import sys, select, tty, termios # Define utility function to check for keyboard input def isData(): return select.select([sys.stdin], [], [], 0) == ([sys.stdin], [], []) # Configure terminal settings for non-blocking input old_settings = termios.tcgetattr(sys.stdin) tty.setcbreak(sys.stdin.fileno()) # Infinite loop num = 0 while 1: # Print and increment number print(num) num += 1 # Check for keyboard input if isData(): # Read single character from keyboard c = sys.stdin.read(1) # Check for escape key to quit if c == '\x1b': break # Restore terminal settings termios.tcsetattr(sys.stdin, termios.TCSADRAIN, old_settings)
使用 Pygame 模块(跨平台)
如果您需要跨多个平台的非阻塞输入或想要图形用户界面,Pygame 提供跨平台解决方案:
import pygame from pygame.locals import * # Define variables num = 0 done = False # Initialize Pygame pygame.init() screen = pygame.display.set_mode((640, 480)) pygame.display.set_caption('Python numbers') screen.fill((159, 182, 205)) font = pygame.font.Font(None, 17) # Infinite loop while not done: # Display number display(str(num)) num += 1 # Check for events (e.g., keyboard input) pygame.event.pump() keys = pygame.key.get_pressed() # Check for escape key to quit if keys[K_ESCAPE]: done = True
以上是如何在 Python 控制台应用程序中实现非阻塞用户输入?的详细内容。更多信息请关注PHP中文网其他相关文章!