zoukankan      html  css  js  c++  java
  • 条件、循环、函数定义 练习

    a.画五角星

    import turtle
    
    turtle.shape('turtle')
    
    for i in range(5):
        turtle.forward(100)
        turtle.right(144)
    
    turtle.hideturtle()
    turtle.done()

    b.画同心圆

    import turtle
    
    turtle.shape('turtle')
    
    for i in range(5):
        turtle.up()
        turtle.goto(0,-20*(i+1))
        turtle.down()
        turtle.circle(20*(i+1))
       
    turtle.hideturtle()
    turtle.done()

    c.画太阳花

    import turtle

    turtle.shape('turtle')

    turtle.fillcolor('orange')

    turtle.begin_fill()
    while True:
    turtle.forward(100)
    turtle.right(150)
    if(abs(turtle.pos()))<1:
    break
    turtle.end_fill()

    turtle.hideturtle()
    turtle.done()

    d.画五个五角星

    import turtle
    
    turtle.shape('turtle')
    turtle.speed(
    100)
    turtle.setup(
    600,400,0,0) turtle.color('yellow') turtle.bgcolor('red') turtle.fillcolor('yellow') def my_goto(x,y): turtle.up() turtle.goto(x,y) turtle.down() def xing(r): turtle.begin_fill() for i in range(5): turtle.forward(r) turtle.right(144) turtle.end_fill() my_goto(-330,170) xing(100) my_goto(-130,300) xing(50) my_goto(-80,200) xing(50) my_goto(-80,100) xing(50) my_goto(-130,0) xing(50) turtle.hideturtle() turtle.done()

     e.画◇花瓣的太阳花

    import turtle
    turtle.shape('turtle')
    
    turtle.speed(100)
    turtle.fillcolor('lavender')
    
    turtle.begin_fill()
    def hua():
        for i in range(1,3):
            turtle.forward(100)
            turtle.right(45)
            turtle.forward(100)
            turtle.right(135)
    
    for i in range(1,37):
        hua()
        turtle.left(10)
    turtle.end_fill()
    turtle.right(90)
    turtle.forward(300)
    
    turtle.hideturtle()
    turtle.done()

  • 相关阅读:
    asp.net实现bt和pt协议—torrent
    asp.net实现bt和pt协议bencode
    asp.net实现bt和pt—tracker response
    asp.net实现bt和pt——邪恶篇:PtCheater
    自我介绍
    [转载]直接保存Matlab图像到PPT文件
    中断过程与主程序调用子程序过程的比较
    [转载]转贴:大学电子类专业学生忠告
    2010年10月26日
    [转载]win7命令大全
  • 原文地址:https://www.cnblogs.com/qisq/p/7515619.html
Copyright © 2011-2022 走看看