Python 官方文档:入门教程 => 点击学习
目录 一、设置画布 二、画笔 1、画笔属性 2、绘图命令 (1) 画笔运动命令 (2) 画笔控制命令 (3) 全局控制命令 (4) 其他命令 3. 命令详解 三、文字显示为一个圆圈 四、画朵小花 一、设置画布 t
目录
turtle为我们展开用于绘图区域,我们可以设置它的大小和初始位置
turtle.screensize(canvwidth=600,canvheight=800,bg='black')
#参数分别代表画布的宽、高、背景色
turtle.screensize()#返回默认大小(400,300)
turtle.setup(width=0.6,height=0.6,startx=100,starty=100)
#输入宽和高为整数时, 表示像素; 为小数时, 表示占据电脑屏幕的比例
#(startx, starty): 这一坐标表示矩形窗口左上角顶点的位置, 如果为空,则窗口位于屏幕中心
turtle.pensize(8) #画笔粗细
turtle.color('red') #画笔颜色 字符串"green", "red" 或者 RGB 3元组。
turtle.speed(0) #画笔移动速度 画笔绘制的速度范围[0,10]整数,数字越大越快
turtle.forward(8) #向前移动
turtle.backward(8) #向后移动
turtle.right(90) #海龟方向向右转90°
turtle.left(90) #海龟方向向左转90°
turtle.penup() #提笔
turtle.pendown() #落笔
turtle.Goto(x,y) 海龟移动到(x,y)位置
turtle.setx(x) 海龟的x坐标移动到指定位置
turtle.sety(y) 海龟的y坐标移动到指定位置
turtle.circle() 画圆
turtle.dot() 画一个圆点(实心)
turtle.setheading(angle) #设置当前朝向为angle角度
turtle.home() 设置当前画笔位置为原点,朝向东(默认值)
turtle.fillcolor('red') 设置 填充颜色
turtle.color(color1, color2) 设置 画笔颜色为color1,填充颜色为color2
turtle.begin_fill() 开始填充颜色
turtle.end_fill() 填充完成
turtle.hideturtle() 隐藏海龟图标
turtle.showturtle() 显示海龟图标
turtle.clear() 清空turtle窗口,但是turtle的位置和状态不会改变
turtle.reset() 清空turtle窗口,重置turtle状态为起始状态
turtle.undo() 撤销上一个turtle动作
turtle.isvisible() 返回当前turtle是否可见
t.write("文本" ,align="center",font=("微软雅黑",20,"nORMal")) 写文本
align(可选):left,right,center;font(可选):字体名称,字体大小,字体类型(normal,bold,italic)
turtle.circle(radius, extent=None, steps=None)
参数:
radius(半径):半径为正(负),表示圆心在画笔的左边(右边)画圆;
extent(弧度) ;
steps :(做半径为radius的圆的内切正多边形,多边形边数为steps)。
import turtle as tt.circle(50)#整圆t.circle(50,steps=3)#内置的三角形t.penup()t.goto(100,0)t.pendown()t.circle(50,180)#半圆
参考原文链接:https://blog.csdn.net/zengxiantao1994/article/details/76588580
import turtle as ttext="棉花娃娃很可爱"t.penup()x=len(text)for i in text: t.write(i,font='consolas') t.right(360/x) t.penup() t.forward(30)t.hideturtle()
import turtle as tt.speed(0)#花柄t.penup()t.goto(0,-150)t.pendown()t.pensize(2)t.setheading(90)t.color('brown')t.fd(300)#花瓣t.pensize(1)t.color('black','red')t.begin_fill()for i in range(10): t.left(45) t.circle(80,60) t.left(120) t.circle(80,60)t.end_fill()#叶子for i in range(2): t.penup() t.goto(0,10-50*i) x=20+80*i t.setheading(x) t.pendown() t.color('brown','green') t.begin_fill() t.circle(60,60) t.left(120) t.circle(60,60) t.end_fill()t.hideturtle()
来源地址:https://blog.csdn.net/Echo_165/article/details/123968150
--结束END--
本文标题: Python — — turtle 常用代码
本文链接: https://www.lsjlt.com/news/420199.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0