如何用python制作五角星

操作环境:win11

使用工具:idle

编程语言:python

创作目的:初学者熟悉python

简析:通过turtle画五角星

指令如下:

#FivePointStar.py
from turtle import *
pensize(5)
pencolor('green')
fillcolor('red')
begin_fill()
while True:
    fd(200)
    right(144)
    if abs(pos()) < 1:
        break
    end_fill()

结果如图:

如何用python制作五角星_第1张图片

 

你可能感兴趣的:(python)