python turtle库制作可爱的假向日葵

  • Post author:
  • Post category:python


效果图:

在这里插入图片描述

是不是很可爱呢!现在就带各位朋友们亲手做一个假向日葵花吧

# sun flower 向日葵
# 创作人:李国庆
# 扣扣:1974914843
import turtle as t

t.begin_fill()
t.pendown()
t.circle(60)
t.fd(14)
t.fillcolor('yellow')
t.end_fill()

t.begin_fill()
t.right(40)
t.fd(40)
t.circle(30,180)
t.fd(33)
t.fillcolor('red')
t.end_fill()
# t.circle(60)

# 花瓣
for i in range(5):
    t.begin_fill()
    t.right(120)
    t.fd(40)
    t.circle(30, 180)
    t.fd(33)
    t.fillcolor('red')
    t.end_fill()

# 花茎
t.right(150)
t.pensize(5)
t.color('brown')
t.fd(200)
t.right(180)
t.penup()
t.fd(70)

# 右叶片
t.begin_fill()
t.right(10)
t.pendown()
t.pensize(1)
t.circle(-80, 120)
t.right(65)
t.circle(-80, 120)
t.fillcolor('green')
t.end_fill()

# 左叶片
t.begin_fill()
t.right(30)
t.circle(80, 120)
t.right(-65)
t.circle(80, 120)
t.fillcolor('green')
t.end_fill()

t.done()

在这里插入图片描述



版权声明:本文为human_soul原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。