资源简介
pygame做出的接球小游戏,用python打开(注:你的python必须有pygame)
代码片段和文件信息
import syspygametimerandom
from pygame.locals import *
pygame.init()
screen = pygame.display.set_mode((640480)NOframe)
pygame.display.set_caption(‘ballgame‘)
# a = pygame.image.load(r‘C:\Users\lee\Desktop\ball.png‘)
# A = a
class Ball(pygame.sprite.Sprite):
def __init__(selfimagepositionspeed):
pygame.sprite.Sprite.__init__(self)
self.image = pygame.image.load(image).convert_alpha()
self.rect = self.image.get_rect()
self.rect.leftself.rect.top = position
self.speed = speed
def move(selfup=False):
if self.rect.left < 0:
if self.speed[0] < 0:
self.speed[0] = -self.speed[0]+0.05
else:
self.speed[0] = -self.speed[0]-0.05
if self.rect.ri
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 20774 2018-09-21 13:12 ballgame\Ball.png
文件 4074 2018-09-22 10:01 ballgame\ballgame.py
文件 714 2018-09-21 22:46 ballgame\biao.jpg
文件 17984 2018-09-20 21:58 ballgame\Board.png
文件 8946 2018-09-21 21:44 ballgame\x.jpg
目录 0 2018-09-21 22:45 ballgame
----------- --------- ---------- ----- ----
52492 6
- 上一篇:吴恩达机器学习作业Python实现(线性回归)
- 下一篇:俄罗斯方块python实现
相关资源
- python一个打砖块的小游戏
- python实验指导书 图文高清版
- python主动安装第三方库
- python爬取豆瓣top250电影信息
- python绘制 大蟒蛇
- python小程序(数组排序)
- Python去水印(基于cv2)
- Python 数据结构入门 - 二叉搜索树(
- python空心电感计算器
- python除法.docx
- 抽奖背后的秘密(python抽奖逻辑)
- 绘制统计学直方图茎叶图(matplotlib)
- python求解标准差
- python数据分析与处理
- 利用Python将照片在Excel中利用点阵图显
- pygame贪吃蛇
- python turtle 跳房子
- python 人群计数
- Python调用第三方API换脸
- “去哪儿吃”帮你选餐厅(python代码
- python 控制台登陆密码验证
- KNN算法的Python实现(datingrecd.ipynb)
- python核心编程第二版-习题答案
- python爬取笔趣阁小说
- Python程序设计基础试题以及答案(3
- python聊天-服务端与客户端
- python递归求最大公约数
- 用python画皮卡丘(基于turtle)
- 伟哥的python私房菜(中国程序员).
- pip一键升级(python脚本)
评论
共有 条评论