猫史档案馆


【Python作品分享】x【作品秀】

用户:xiao******ppxiao******pp查看:0 回复:0 评论:0 创建时间:2021-04-26T16:07:52


【作品展示】

center_image

 

【作品介绍】

不完善Python接水果

代码在下

 

【作品源代码】

import pgzrun
import random
WIDTH = 1440
HEIGHT = 900
a = Actor('langbig')
b = Actor('bing')
a.x = 720
a.y = 890
score = 0
def draw():
    screen.clear()
    screen.blit('desktop',pos=[0,0])
    a.draw()

def update():
    if keyboard.left:
        a.x -= 5
    if keyboard.right:
        a.x += 5
    if b.y > 900:
        b.x = random.randint(0,1440)
        b.y = 0
    else:
        b.y -= 1
pgzrun.go()
    

 

【提示】

部分含有Python第三方库相关内容的作品,在海龟编辑器网页端无法运行哦!如遇到这种情况,可以打开下面的链接,下载海龟编辑器客户端:

https://python.codemao.cn


回复

上一页1 页 / 共 0下一页