码迷,mamicode.com
首页 > 其他好文 > 详细

条件、循环、函数定义 练习

时间:2017-09-12 13:33:08      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:break   yellow   done   技术   http   条件   sha   goto   height   

1.

from turtle import*
shape(‘turtle‘)
color(‘yellow‘)
fillcolor(‘yellow‘)
begin_fill()
for i in range(5):
     forward(100)
     right(144)
end_fill()

技术分享

2.

from turtle import*
shape(‘turtle‘)
begin_fill()
for i in range(5):
     circle(30*(i+1))
     up()
     goto(0,-30*(i+1))
     down()

 技术分享

3.

from turtle import*
shape(‘turtle‘)

color(‘orange‘)
fillcolor(‘blue‘)
begin_fill()
while True:
      forward(200)
      left(200)
      if(abs(pos()))<1:
          break
end_fill()
done()

技术分享

4.

shape(‘turtle‘)

color(‘orange‘)
fillcolor(‘blue‘)
begin_fill()
while True:
forward(200)
left(200)
if(abs(pos()))<1:
break
end_fill()
done()


from turtle import*
bgcolor(‘red‘)
fillcolor(‘yellow‘)
color(‘yellow‘)
def wujiao(x,y):
up()
goto(x,y)
down()
wujiao(-300,230)
begin_fill()
for i in range(5):
forward(100)
right(144)
end_fill()
wujiao(-200,300)
begin_fill()
for i in range(5):
forward(50)
right(144)
end_fill()
wujiao(-150,250)
begin_fill()
for i in range(5):
forward(50)
right(144)
end_fill()
wujiao(-150,200)
begin_fill()
for i in range(5):
forward(50)
right(144)
end_fill()
wujiao(-200,150)
begin_fill()
for i in range(5):
forward(50)
right(144)
end_fill()

技术分享

 

条件、循环、函数定义 练习

标签:break   yellow   done   技术   http   条件   sha   goto   height   

原文地址:http://www.cnblogs.com/zheng01/p/7509238.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!