编程语言
首页 > 编程语言> > python画一个五角星

python画一个五角星

作者:互联网

用python 画一个可爱的五角星,这是效果。

 

参考代码:

from turtle import *


color('red','yellow')

screensize(800, 600, "black")#设置屏幕大小,背景颜色为黑色

begin_fill()
speed(5)
for i in range(5):
    forward(150)
    right(144)
    if(abs(pos())<1):
        break    
end_fill()
ht()
done()

 

标签:turtle,150,right,python,一个,五角星,color
来源: https://blog.csdn.net/yanlong22/article/details/121109592