python海龟图腾花 turtle

python海龟图腾花 turtle

python海龟图腾花turtle

python海龟图腾花turtle
下面是部分代码预览:

"""
   海龟图腾花.py
"""

import turtle

colors = ['red', 'orange', 'yellow', 'green', 'cyan', 'blue', 'purple',
          'brown', 'pink', 'white', 'gray', 'magenta', 'black']

screen = turtle.getscreen()
screen.bgcolor('gray')
screen.delay(0)

turtle.penup()
turtle.setx(-150)
turtle.width(20)
turtle.speed(0)
turtle.pendown()
        

如需要查看完整源代码,请

成为会员后,登陆才能继续浏览!联系微信scratch8即可办理会员。
(会员专属:能浏览所有文章,下载所有带链接的Python资源。)

李兴球

李兴球的博客是Python创意编程原创博客

评论已关闭。