import pygame,sys
from pygame.locals import *
pygame.init()
SCREEN = pygame.display.set_mode((400,300))
pygame.display.set_caption('Hello World!')
while True:
for event in pygame.event.get():
if event.type == QUIT:
pygame.quit()
sys.exit()
pygame.display.update()
2、效果图
原创文章 7获赞 3访问量 665
关注
私信
展开阅读全文
作者:ABING_DINA