0
点赞
收藏
分享

微信扫一扫

Python画图举例---同切圆绘制,五角星绘制

眼君 2022-03-26 阅读 40
python
import turtle
turtle.pensize(2)
turtle.circle(10)
turtle.circle(18)
turtle.circle(32)
turtle.circle(50)
turtle.circle(77)
turtle.circle(100)
turtle.circle(120)

from turtle import *
color('red','red')
begin_fill()
for i in range(5):
      fd(200)
      rt(144)
end_fill()
done()

 

举报

相关推荐

0 条评论