使用Pygame写一个HelloWorld程序

Abigail ·
更新时间:2024-11-11
· 515 次阅读

1、代码 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



helloworld pygame

需要 登录 后方可回复, 如果你还没有账号请 注册新账号