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의 문서에 대기 정보를 표시하지 않는 방법을 기록합니다.
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를 읽어도 대기 정보가 표시되지 않습니다.
Reference
이 문제에 관하여(pygame의 대기 정보를 표시하지 마십시오), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://zenn.dev/paraches/articles/disable_pygame_welcome_message텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)