首页上一页 1 下一页尾页 4 条记录 1/1页
怎样理解:speed[0] = -speed[0] 和 speed[1] = -speed[1]
发表在Python图书答疑
2022-01-17 悬赏:2 学分
《Python编程入门指南》第15章 Pygame游戏框架 251页-251页
是否精华
是
否
版块置顶:
是
否
ballrect = ballrect.move(speed) # 移动小球
# 碰到左右边缘
if ballrect.left < 0 or ballrect.right > width:
speed[0] = -speed[0]
# 碰到上下边缘
if ballrect.top < 0 or ballrect.bottom > height:
speed[1] = -speed[1]
疑问1:speed[5,5]有2个元素,而speed[1]为何只有1个元素?
疑问2:在speed[0] = -speed[0] 和 speed[1] = -speed[1]中,列表元素为何只能设0和1?我试图改变其它值,球就一闪不见了,这是为什么?