用海龟制图制作的一个动画,下面是代码预览:
""" 滚动颜色条 """ import time from turtle import * colors_list = ["red3", "orange", "yellow", "seagreen4", "orchid4", "royalblue1", "dodgerblue4"] width,height = 480,360 screen = Screen() screen.tracer(0,0) screen.setup(width,height) screen.title("滚动颜色条") tom = Turtle(visible=False) tom.up() tom.goto(-240,-155) tom.width(40)
需要全部代码
需要浏览更多吗?
成为会员后,登陆才能继续浏览!联系微信scratch8即可办理会员。
(会员专属:能浏览所有文章,下载所有带链接的Python资源。)