python画太阳花

import turtle as t
t.color("red","yellow")
t.begin_fill()
for i in range(50):
t.fd(200)
t.left(170)
t.end_fill()
t.done()

 

原文地址:https://www.cnblogs.com/nanfengnan/p/13725130.html