비차단 콘솔 입력: 비동기 처리 잠금 해제
다음 시나리오를 고려해보세요. Python으로 IRC 클라이언트를 만들고 있고 서버로부터 데이터를 수신하고 분석하는 루프입니다. 그러나 raw_input을 사용하여 텍스트를 입력하면 입력이 완료될 때까지 루프가 갑자기 중단됩니다. 이러한 중단은 루프의 원활한 기능을 방해합니다.
이 문제를 해결하고 루프의 지속적인 실행을 유지하기 위해 다양한 비차단 입력 방법을 사용할 수 있습니다.
Windows의 경우(콘솔 전용) ):
import msvcrt num = 0 done = False while not done: print(num) num += 1 if msvcrt.kbhit(): print("you pressed", msvcrt.getch(), "so now I will quit") done = True
Linux의 경우:
import sys import select import tty import termios def isData(): return select.select([sys.stdin], [], [], 0) == ([sys.stdin], [], []) old_settings = termios.tcgetattr(sys.stdin) try: tty.setcbreak(sys.stdin.fileno()) i = 0 while 1: print(i) i += 1 if isData(): c = sys.stdin.read(1) if c == '\x1b': # x1b is ESC break finally: termios.tcsetattr(sys.stdin, termios.TCSADRAIN, old_settings)
크로스 플랫폼 또는 GUI용 통합:
import pygame from pygame.locals import * def display(str): text = font.render(str, True, (255, 255, 255), (159, 182, 205)) textRect = text.get_rect() textRect.centerx = screen.get_rect().centerx textRect.centery = screen.get_rect().centery screen.blit(text, textRect) pygame.display.update() 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) num = 0 done = False while not done: display( str(num) ) num += 1 pygame.event.pump() keys = pygame.key.get_pressed() if keys[K_ESCAPE]: done = True
이러한 비차단 입력 기술을 채택하면 작업을 방해하지 않고 실시간 사용자 상호 작용을 원활하게 통합할 수 있습니다. IRC 루프의 흐름.
위 내용은 실시간 애플리케이션을 위해 Python에서 비차단 콘솔 입력을 어떻게 구현할 수 있습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!