pygame의 대기 정보를 표시하지 마십시오

1421 단어 Pythonpygametech
pygame에서 읽을 때, 컨트롤러에 대기 정보를 표시하지 마십시오.

환영 메시지란?


여기서 말하는pygame의 환영 메시지는 다음과 같다.
pygame 2.0.1 (SDL 2.0.14, Python 3.9.4)
Hello from the pygame community. https://www.pygame.org/contribute.html
pygame,SDL,Python 각자의 버전 번호를 표시합니다.
그러나 스크립트를 시작할 때마다 어떤 것들이 표시됩니까?나는 생각해서 표시하지 않는 방법을 찾았다.

대기 정보 설정 취소


pygame의 문서에 대기 정보를 표시하지 않는 방법을 기록합니다.
https://www.pygame.org/docs/ref/pygame.html
Pygame Environment Variables의 항목이 설정되어 있습니다.
PYGAME_HIDE_SUPPORT_PROMPT -
Set to "1"to hide the prompt.
This stops the welcome message popping up in the console that tells you which version of python, pygame & SDL you are using. Must be set before importing pygame.
pygame을 가져오기 전에 환경 변수를 설정하면 됩니다.
구체적으로 이런 코드다.
from os import environ
environ['PYGAME_HIDE_SUPPORT_PROMPT'] = '1'
import pygame
pygame를 읽어도 대기 정보가 표시되지 않습니다.

좋은 웹페이지 즐겨찾기