创建一个空的Pygame窗口代码:
import pygame, sys
def run():
pygame.init()
screen = pygame.display.set_mode((600,200))
p
2019-09-11