資源簡介
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
- 上一篇:python抓取電影信息
- 下一篇:爬蟲爬取攜程機票信息
評論
共有 條評論