资源简介
用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
- 上一篇:python3安卓QQ5.8协议
- 下一篇:Teamviewer修改ID的脚本
相关资源
- python一个打砖块的小游戏
- python实验指导书 图文高清版
- python主动安装第三方库
- python爬取豆瓣top250电影信息
- python绘制 大蟒蛇
- python小程序(数组排序)
- Python去水印(基于cv2)
- Python 数据结构入门 - 二叉搜索树(
- python空心电感计算器
- python除法.docx
- 抽奖背后的秘密(python抽奖逻辑)
- 绘制统计学直方图茎叶图(matplotlib)
- python求解标准差
- python数据分析与处理
- 利用Python将照片在Excel中利用点阵图显
- python turtle 跳房子
- python 人群计数
- 自动化测试(基于pytest)
- Python调用第三方API换脸
- “去哪儿吃”帮你选餐厅(python代码
- python 控制台登陆密码验证
- KNN算法的Python实现(datingrecd.ipynb)
- python核心编程第二版-习题答案
- python爬取笔趣阁小说
- Python程序设计基础试题以及答案(3
- python聊天-服务端与客户端
- python递归求最大公约数
- 用python画皮卡丘(基于turtle)
- 伟哥的python私房菜(中国程序员).
- pip一键升级(python脚本)
评论
共有 条评论