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

资源简介

用oython画标准篮球场,标注有尺寸。供中小学生及python爱好者参考,本代码在python 3.7.4以上通过。

资源截图

代码片段和文件信息

#画大边框
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()
#画操场框
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()

#画右操场框
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()
#画左操场框
t.up()
t.goto(-28049)
t.down()
t.fillcolor(“red“)
t.begin_fill

评论

共有 条评论