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

    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()

  • 相关阅读:
    BUG漏测的原因总结,以及如何处理
    费用流
    拉格朗日插值
    数论问题整理
    计数问题
    POJ 1741 Tree
    bzoj 2820: YY的GCD
    luogu P3690 【模板】Link Cut Tree (动态树)
    bzoj 1036: [ZJOI2008]树的统计Count
    bzoj 3282: Tree
  • 原文地址:https://www.cnblogs.com/zheng01/p/7509238.html
Copyright © 2011-2022 走看看