python的项目
营养快线121号
这个作者很懒,什么都没留下…
展开
-
python的飞机大战
python的飞机大战的完整代码alien.pyimport pygamefrom pygame.sprite import Spriteclass Alien(Sprite): """表示单个外星人的类""" def __init__(self, ai_settings, screen): """初始化外星人并设置其他位置""" super...原创 2019-07-19 13:18:19 · 1664 阅读 · 0 评论 -
简单小游戏
又是一个简单的小游戏import pygamepygame.init()screen = pygame.display.set_mode([800, 600])pygame.display.set_caption("smiley pong")keep_going = Truepic = pygame.image.load("images/smile.png")pic = pygame...原创 2019-08-06 10:51:56 · 389 阅读 · 0 评论