turtle学习

turtle是一个python的库

有一只海龟,其实在窗体正中心,在画布上游走,走过的轨迹形成了绘制的图形,海龟由程序控制,可以变换颜色,改变宽度等

turtle.setup(width , height , startx , starty) width和height指的是画布的大小,startx指的是距离左边侧的距离,starty指的是距离上边侧的距离

turtle.goto(x,y) 指的是去的点的坐标,刚开始的坐标是(0,0),第三个点是从第二个点去的,并非回到原点重新走

turtle.circle(r,angle) 根据半径和角度画圆

turtle.bk(d) 向左走

turtle.fd(d) 向右走

turtle.seth(angle) 只改变方向而不行进,逆时针为正,顺时针为负

turtle.left(angle) 向左转

turtle.right(angle) 向右转

turtle.colormode(mode) 这是颜色,具体需要去查阅

turtle.pencolor("purple") 使用的是紫色

turtle.penup() 把笔抬起来

turtle.pendown() 把笔放下去写

turtle.done() 结束

相关推荐
小九九的爸爸2 小时前
前端想要入门Agent开发,要具备哪些Python基础?
python·agent·ai编程
阿耶同学3 小时前
手把手教你用 LangGraph 搭建三层嵌套 Agent 架构
python·程序员
花酒锄作田19 小时前
Pydantic校验配置文件
python
hboot19 小时前
AI工程师第四课 - 深度学习入门
pytorch·python·神经网络
ZhengEnCi1 天前
P2M-Matplotlib折线图完全指南-从数据可视化到趋势分析的Python绘图利器
python·matlab·数据可视化
ZhengEnCi1 天前
P2L-Matplotlib饼图完全指南-从数据可视化到图表定制的Python绘图利器
python·matlab
曲幽1 天前
你的REST接口还在“过度投喂”数据吗?——FastAPI + GraphQL实战避坑指南
python·fastapi·web·graphql·route·cors·rest·strawberry
用户8358086187911 天前
基于 Self-RAG 与列表级重排序的进阶 RAG 系统设计与实现
python
Warson_L2 天前
Python `Annotated` 与 LangGraph Reducer 学习笔记
python
韩师傅2 天前
海天线算法的前世今生
python·计算机视觉