python turtle库画出同心圆,五角星

文章目录

  • 同心圆
  • 五角红星

同心圆

import turtle
turtle.pensize(2)
turtle.circle(10)
turtle.circle(40)
turtle.circle(80)
turtle.circle(160) 

python turtle库画出同心圆,五角星_第1张图片

五角红星

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

python turtle库画出同心圆,五角星_第2张图片

你可能感兴趣的:(Python学习,python)