비차단 콘솔 입력
비차단 콘솔 입력은 사용자와의 동시 상호 작용과 지속적인 처리가 필요한 애플리케이션에서 매우 중요합니다. 이 경우 목표는 Python IRC 클라이언트에 대해 이 기능을 구현하는 것입니다.
Windows의 비차단 입력
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
Linux에서는 select, tty 및 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': 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 애플리케이션에서 비차단 콘솔 입력을 구현할 수 있어 사용자 입력에 실시간으로 응답하면서 지속적인 처리가 가능합니다.
위 내용은 Python에서 비차단 콘솔 입력을 구현하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!