• 大小: 1.16KB
    文件类型: .py
    金币: 1
    下载: 0 次
    发布日期: 2021-01-30
  • 语言: Python
  • 标签: turtle  python  

资源简介

turtle库画五星红旗

资源截图

代码片段和文件信息

from turtle import*
from time import* #引用库函数
print(‘祝伟大祖国繁荣昌盛!‘)
hideturtle() #隐藏画笔
setup(width=900height=600) #画布大小
bgcolor(“red“) #背景颜色
fillcolor(“yellow“) #填充的颜色
color(‘yellow‘)  #图形的颜色
speed(100) #绘制的速度
begin_fill() #开始填充图形
up()
goto(-300240) #开始的位置
setheading(288) #改变画笔的移动方向
down()
for i in range(5):
    forward(180) #向前移动180Px
    right(144) #顺时针移动144度
end_fill() #填充完成
sleep(1)
 #画第一个副星
begin_fill()
up()
goto(-176225)
setheading(47)
down()
for i in range

评论

共有 条评论