비차단 콘솔 입력 받기
대화형 애플리케이션을 만들 때 진행 중인 프로세스를 중단하지 않고 사용자 입력을 수락해야 하는 경우가 많습니다. 이는 루프가 서버 응답을 지속적으로 수신하고 해석하는 IRC 클라이언트 개발과 같은 상황에서 발생합니다.
문제 설명
Python에서 콘솔 입력에 raw_input을 사용하면 루프가 중단됩니다. 사용자가 입력을 제공할 때까지. 비차단 입력을 달성하려면 대체 접근 방식이 필요합니다.
솔루션
콘솔 입력만 사용하는 Windows 사용자의 경우 msvcrt 모듈을 사용할 수 있습니다.
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 환경의 경우 termios 모듈은 다음을 제공합니다. 솔루션:
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를 포함하는 경우 Pygame은 다양한 옵션입니다.
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
위 내용은 Python에서 비차단 콘솔 입력을 얻는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!