赞
踩
如图,这是我们要画的东西这是一朵太阳花(简易的)
接下来我们看看如何画吧
- from turtle import* #用turtle库
- color("red","yellow") #定义颜色
- speed(10) #速度
- begin_fill()
- for i in range(36): #for循环
- fd(200)
- lt(170)
- end_fill()
- done()
代码很简单,我们的太阳花就好啦,感谢学习!
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。