-
大小: 10KB文件類型: .py金幣: 1下載: 0 次發(fā)布日期: 2021-01-01
- 語(yǔ)言: Python
- 標(biāo)簽:
資源簡(jiǎn)介
用oython畫標(biāo)準(zhǔn)籃球場(chǎng),標(biāo)注有尺寸。供中小學(xué)生及python愛(ài)好者參考,本代碼在python 3.7.4以上通過(guò)。
代碼片段和文件信息
#畫大邊框
import?turtle?as?t
t.pensize(2)
t.up()
t.goto(320190)
t.down()
t.fillcolor(“red“)
t.begin_fill()
t.left(180)
for?i?in?range(13):
????t.fd(640)
????t.left(90)
????t.fd(380)
????t.left(90)
t.end_fill()
#畫操場(chǎng)框
t.up()
t.goto(280150)
t.down()
t.pencolor(“white“)
t.fillcolor(“blue“)
t.begin_fill()
t.left(0)
for?i?in?range(13):
????t.fd(560)
????t.left(90)
????t.fd(300)
????t.left(90)
t.end_fill()
#畫中心圓
t.up()
t.goto(036)
t.down()
t.fillcolor(“red“)
t.begin_fill()
t.circle(36)
t.end_fill()
#畫右操場(chǎng)框
t.up()
t.goto(28049)
t.down()
t.fillcolor(“red“)
t.begin_fill()
t.left(0)
for?i?in?range(13):
????t.fd(116)
????t.left(90)
????t.fd(98)
????t.left(90)
t.end_fill()
#畫左操場(chǎng)框
t.up()
t.goto(-28049)
t.down()
t.fillcolor(“red“)
t.begin_fill
評(píng)論
共有 條評(píng)論