美文网首页
Cool Colorful shapes

Cool Colorful shapes

作者: AlanSS | 来源:发表于2018-12-29 18:09 被阅读15次

import turtle

def main():

    turtle.pensize(3)

    turtle.penup()

    turtle.goto(-200, -50)

    turtle.pendown()

    turtle.begin_fill()

    turtle.color("red")

    turtle.circle(40, steps=3)

    turtle.end_fill()

    turtle.penup()

    turtle.goto(-100, -50)

    turtle.pendown()

    turtle.begin_fill()

    turtle.color("blue")

    turtle.circle(40, steps=4)

    turtle.end_fill()

    turtle.penup()

    turtle.goto(0, -50)

    turtle.pendown()

    turtle.begin_fill()

    turtle.color("green")

    turtle.circle(40, steps=5)

    turtle.end_fill()

    turtle.penup()

    turtle.goto(100, -50)

    turtle.pendown()

    turtle.begin_fill()

    turtle.color("yellow")

    turtle.circle(40, steps=6)

    turtle.end_fill()

    turtle.penup()

    turtle.goto(200, -50)

    turtle.pendown()

    turtle.begin_fill()

    turtle.color("purple")

    turtle.circle(40)

    turtle.end_fill()

    turtle.color("green")

    turtle.penup()

    turtle.goto(-100, 50)

    turtle.pendown()

    turtle.write(("Cool Colorful shapes"),

                font=("Times", 18, "bold"))

    turtle.hideturtle()

    turtle.done

    turtle.exitonclick()

if __name__ == '__main__':

    main()

相关文章

  • Cool Colorful shapes

    import turtledef main(): turtle.pensize(3) turtle.penup...

  • Colorful Foods, Colorful Vitamin

    Colorful foods can provide us colorful vitamins, which ca...

  • #30天专注成长计划#week3D14

    6首适合宝宝不同风格的英文歌曲 shapes,shapes,shapes, there are all sorts...

  • 【天天英语幼儿英语绘本】——《A Colorful Chamel

    《A Colorful Chameleon》变色龙带你认颜色 A Colorful Chameleon变色龙带你认...

  • Colorful

    岚灵儿 他是一个很有才的歌手,这天,他办了一场11万人的演唱会,演唱会门外,有好多穿着黑色西装的男人,还有好多黑色...

  • COLORFUL

    colorful 我走过熟悉的路口 没有人在我的身后 风已停了雨还下着 就算回头也没用了 盛开的花少了欣赏的人 她...

  • Colorful

    不知道什么时候下的音乐,听到很惊艳。翻到评论更加惊艳。 Colorful的唇语是i love you. 好浪漫~~...

  • colorful

    阴暗内向自闭的小林真,眼里装着独自承受了世界的悲伤的小林真,内心清澈敏感容不下一丝肮脏事物的小林真,徜徉于自己绘画...

  • 颜、色

    Colorful Tart,ins:lokokitchen

  • 阅读的好处(原创)

    that is a colorful world .there is beautiful scenery and ...

网友评论

      本文标题:Cool Colorful shapes

      本文链接:https://www.haomeiwen.com/subject/vjuplqtx.html