python的项目
营养快线121号
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
python的飞机大战
python的飞机大战的完整代码 alien.py import pygame from pygame.sprite import Sprite class Alien(Sprite): """表示单个外星人的类""" def __init__(self, ai_settings, screen): """初始化外星人并设置其他位置""" super...原创 2019-07-19 13:18:19 · 1711 阅读 · 0 评论 -
简单小游戏
又是一个简单的小游戏 import pygame pygame.init() screen = pygame.display.set_mode([800, 600]) pygame.display.set_caption("smiley pong") keep_going = True pic = pygame.image.load("images/smile.png") pic = pygame...原创 2019-08-06 10:51:56 · 441 阅读 · 0 评论
分享