Tyson

您是否正在尝试创建一个窗口显示。。?在

你可以试试这个:您应该下载pygame和python版本

您必须为系统退出导入pygame&sys,然后从导入pygame.locals游戏.

这是剧本

import pygame, sys
from pygame.locals import *
pygame.init()
window = pygame.display.set_mode((x, y)) # use the integer of Width(x) & Height(y) of the window
pygame.display.set_caption('Blank Window')
while True : # game event loop
for event pygame.event.get(): # we used this, so the window won't 'hang' if we wanna quit the window (event is a variable name so you can named it as you like it)
if event.type == QUIT:
pygame.quit()
sys.exit()
pygame.display.update() # this's for the update of the script

就我所知。。。

^_^对不起,我犯了什么错误。。不过,你可以随便问我。。

但我希望你能问专家这个问题。。。

我认识一个人,如果你想知道更多,请尽快回复我。。