码迷,mamicode.com
首页 > 编程语言 > 详细

Python、循环的练习

时间:2017-10-18 10:15:48      阅读:305      评论:0      收藏:0      [点我收藏+]

标签:shape   screen   sha   exit   set   code   .sh   pos   for   

技术分享
技术分享
from turtle import *
fillcolor("red")
begin_fill()
for i in range(5):
    up()
    goto(0,-20*i)
    down()
    circle(20*i)
end_fill()
技术分享

一、同心圆

技术分享

技术分享

二、太阳花

技术分享
from turtle import *
color(‘red‘,‘yellow‘)
begin_fill()
while True:
    forward(200)
    right(150)
    if abs(pos())<1:
        break
end_fill()
done()
技术分享

技术分享

三、五星红旗

技术分享

技术分享
from turtle import *
setup(640,440,0,0)
color("yellow")
bgcolor("red")
fillcolor("yellow")
  
def llf_goto(x,y):
    up()
    goto(x,y)
    down()
     
def llf_draw(r):
    begin_fill()
    for i in range(5):         
        forward(r)
        right(144)
    end_fill()


llf_goto(-286,132)
llf_draw(130)

llf_goto(-132,180)
llf_draw(50)
 
llf_goto(-88,132)
llf_draw(50)
 
llf_goto(-88,72)
llf_draw(50)
 
llf_goto(-132,22)
llf_draw(50)
技术分享

 

 
技术分享

 四、画菱形花

技术分享
import turtle

def draw_1(llf):
    llf.forward(100)
    llf.right(45)
    llf.forward(100)
    llf.right(135)

def draw_2():
    window=turtle.Screen()
    window.bgcolor("blue")
    llf=turtle.Turtle()
    llf.shape("turtle")
    llf.color("orange")
    llf.speed("fastest")

    for i in range(1,37):
        draw_1(llf)
        draw_1(llf)
        llf.left(10)

    llf.right(90)
    llf.forward(155)
    llf.color(‘green‘)
    llf.forward(145)
    window.exitonclick()
draw_2()
技术分享

 

 技术分享

Python、循环的练习

标签:shape   screen   sha   exit   set   code   .sh   pos   for   

原文地址:http://www.cnblogs.com/kinoko/p/7684982.html

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