31 12 月, 2019 功夫熊猫动画 作者 李兴球 在 python, sprites, turtle 本程序演示精灵模块非常简单的制作动画。 """ 功夫熊猫.py """ from sprites import * # 从精灵模块导入所有命令 frames = ['frames/' + str(i) + ".png" for i in range(27)] # 拆帧后的图形 xiongmao = Sprite(shape=frames) while True: xiongmao.nextcostume() time.sleep(0.1)