1、turtle画图——彩色四瓣花

import turtle as t
t.speed(9)
t.pensize(2)
t.penup()
t.goto(0,30)
t.pendown()
t.seth(75)
t.color("black","pink")
t.begin_fill()
for i in range(4):
t.circle(60,270)
t.right(180)
t.end_fill()
t.penup()
t.goto(-35,-20)
t.pendown()
t.color(