Python pygame 简单的pygame

来源:互联网 发布:python twisted 教程 编辑:程序博客网 时间:2024/05/16 00:45
#coding=utf-8#pygameimport pygamepygame.init()screen=pygame.display.set_mode((800,800))screen.fill((255,255,255))pygame.display.set_caption('游戏标题!')ball=pygame.image.load('C:/Users/hou/Desktop/aa.jpg').convert()screen.blit(ball,(10,10))pygame.display.update()