赞
踩
本篇文章给大家谈谈python画六瓣花怎么填充颜色,以及python画六角形状的代码,希望对各位有所帮助,不要忘了收藏本站喔。
python可以使用turtle绘制很多图形。很喜欢学生这份配色,还加了创新花瓣python写麦穗的代码。
图形绘制,要先做构思。
import turtle
t = turtle.Turtle()
import random
t.speed(10)
t.up()
t.goto(0,-180)
t.down()
t.right(180)
t.pensize(4)
t.color("light green")
t.right(100)
t.circle(200,60)
for x in range(6):
t.shape("turtle")
t.begin_fill()
t.color("pink")
t.left(30)
t.circle(60,90)
t.left(90)
t.circle(60,90)
t.end_fill()
t.color("light blue")
#1st
t.up()
t.right(90)
t.goto(100,-20)
t.down()
t.begin_fill()
t.color("pink")
t.left(30)
t.circle(30,90)
t.left(90)
t.circle(30,90)
t.end_fill()
#2nd
t.up()
t.right(90)
t.goto(-150,-100)
t.down()
t.begin_fill()
t.color("pink")
t.left(140)
t.circle(25,90)
t.left(90)
t.circle(25,90)
t.up()
t.end_fill()
#3rd
t.up()
t.right(200)
t.goto(60,-70)
t.down()
t.up()
t.begin_fill()
t.color("pink")
t.left(30)
t.circle(20,90)
t.left(90)
t.circle(20,90)
t.end_fill()
t.penup()
t.ht()
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。