首页 > 其他 > 详细

for循环:用turtle画一颗五角

时间:2018-05-09 21:26:00      阅读:433      评论:0      收藏:0      [点我收藏+]

技术分享图片

import turtle
turtle.pencolor(‘blue‘)
turtle.fillcolor(‘red‘)
turtle.begin_fill()

while True:
    turtle.forward(100)
    turtle.right(50)
    if abs(turtle.position())<1:
        break

turtle.end_fill()
turtle.done()

  

import turtle
turtle.bgcolor(red)
turtle.pencolor(yellow)
turtle.fillcolor(yellow)
turtle.begin_fill()
turtle.forward(300)
turtle.right(144)

turtle.forward(300)
turtle.right(144)

turtle.forward(300)
turtle.right(144)

turtle.forward(300)
turtle.right(144)

turtle.forward(300)
turtle.right(144)

turtle.end_fill()
turtle.done()

技术分享图片

for循环:用turtle画一颗五角

原文:https://www.cnblogs.com/AN23/p/9016710.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!