python编程海龟画图的代码(python海龟绘图代码大全)
python绘图工具turtle库的使用
#PythonDraw.py
import turtle? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? #导入turtle库
turtle.setup(650, 350, 200, 200)???#设置画布大小和位置
turtle.penup()? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? #抬起画笔
turtle.fd(-250)? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? #画笔在空中向前飞行-250个像素
turtle.pendown()? ? ? ? ? ? ? ? ? ? ? ? ? ?#画笔落下
turtle.pensize(25)? ? ? ? ? ? ? ? ? ? ? ? ?#画笔宽度25个像素
turtle.pencolor("purple")? ? ? ? ? ? ? ?#画笔颜色为紫色
turtle.seth(-40)? ? ? ? ? ? ? ? ? ? ? ? ? ? ?#海龟方向香油转动45度,但是不行进
for i in range(4):? ? ? ? ? ? ? ? ? ? ? ? ? ?#这里是一个循环
turtle.circle(40, 80)? ? ? ? ? ? ? ? ? ? ? #绕着左边40远处的点向转80度
turtle.circle(-40, 80)? ? ? ? ? ? ? ? ? ???#绕着右边40远处的点向转80度
turtle.circle(40, 80/2)? ? ? ? ? ? ? ? ? ?#绕着左边40远处的点向转80/2度
turtle.fd(40)? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? #向前40个像素
turtle.circle(16, 180)? ?? ? ? ? ? ? ? ? ? #绕着左边16远处的点向转180度
turtle.fd(40 * 2/3)? ? ? ? ? ? ? ? ? ? ? ? ??#向前40*2/3个像素
turtle.done()? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?#运行完不退出
1.turtle库基本介绍
有一只海龟,其在窗体正中心,在画布上游走,走过的轨迹形成了绘制的图形, 海龟由程序控制,可以变换颜色、改变宽度等。
2.turtle库绘图窗体布局
不设置位置,默认在屏幕中心显示
3.turtle库空间坐标体系
绝对坐标,可以使用goto函数到达指定位置
例如:
4.turtle库角度坐标体系
5.RGB色彩体系
python海龟作图怎么打开?
import turtle就引入海龟作图模块。运行这个模块,就可以作图。
#旋转的正方形
import turtle
import random
t=turtle.Turtle()
t.speed(0)
a=200
n=4
k=360/n
for i in range(90):
####t.pencolor(random.random(),random.random(),random.random())
####t.rt(1)
####for j in range(n):
########t.forward(a)
########t.right(360/n)
t.done()
a=input()
把#替换为空格就可以运行。
怎么用python的turtle库画出这个图案,要代码?
import turtle as t
def quad(color):
? t.begin_fill()
??t.color(color)
??t.forward(100)
??t.left(36)
??t.forward(100)
??t.left(36*4)
??t.forward(100)
??t.left(36)
??t.forward(100)
??t.end_fill()
??t.left(36*3)
for i in range(10):
??if i%2:
??? ??quad('#99c8de')
??else:
??? ??quad('#e5b9c4')
两三年没碰海龟了,觉得没啥用,看你赏金又提了就回去学了学
python_海龟绘图_坐标系问题_画笔各种方法-python工作笔记013
然后我们继续看,这次我们用海龟绘图,程序包,去画画,
看看海龟绘图都有哪些方法
可以看到,先导入import turtle 海龟绘图
然后turtle.showturtle() 会显示一个箭头
turtle.write("hello world") 会显示对应文字
然后turtle.forward(300),会向前走300像素
然后看看海龟绘图的,坐标体系
然后turtle.color("red"),把画笔颜色换成红色
然后turtle.left(90)把箭头,逆时针转90度
然后turtle.forward(300) 向前移动300个像素
然后turtle.goto(0,50) 走到0,50这个坐标点去
再看一下坐标系,原点0,0开始操作
还有上面这些操作,我们也试一试
turtle.goto(0,0)是回到原点
turtle.penup()是抬起画笔
然后turtle.goto(0,300),turtle.goto(0,0) 然后再去,turtle.pendown()放下画笔
然后再去turtle.goto(0,50) turtle.goto(50,50)走到对应的坐标去
然后再去turtle.circle(100),以100为半径,逆时针画一个圆
可以看到,半径是100对吧
Python turtle海龟制图 求代码
# coding:utf-8
import turtle as t
# 绘制小猪佩奇
# =======================================
t.pensize(4)
t.hideturtle()
t.colormode(255)
t.color((255, 155, 192), "pink")
t.setup(840, 500)
t.speed(10)
# 鼻子
t.pu()
t.goto(-100, 100)
t.pd()
t.seth(-30)
t.begin_fill()
a = 0.4
for i in range(120):
if 0 = i 30 or 60 = i 90:
a = a + 0.08
t.lt(3) # 向左转3度
t.fd(a) # 向前走a的步长
else:
a = a - 0.08
t.lt(3)
t.fd(a)
t.end_fill()
t.pu()
t.seth(90)
t.fd(25)
t.seth(0)
t.fd(10)
t.pd()
t.pencolor(255, 155, 192)
t.seth(10)
t.begin_fill()
t.circle(5)
t.color(160, 82, 45)
t.end_fill()
t.pu()
t.seth(0)
t.fd(20)
t.pd()
t.pencolor(255, 155, 192)
t.seth(10)
t.begin_fill()
t.circle(5)
t.color(160, 82, 45)
t.end_fill()
# 头
t.color((255, 155, 192), "pink")
t.pu()
t.seth(90)
t.fd(41)
t.seth(0)
t.fd(0)
t.pd()
t.begin_fill()
t.seth(180)
t.circle(300, -30)
t.circle(100, -60)
t.circle(80, -100)
t.circle(150, -20)
t.circle(60, -95)
t.seth(161)
t.circle(-300, 15)
t.pu()
t.goto(-100, 100)
t.pd()
t.seth(-30)
a = 0.4
for i in range(60):
if 0 = i 30 or 60 = i 90:
a = a + 0.08
t.lt(3) # 向左转3度
t.fd(a) # 向前走a的步长
else:
a = a - 0.08
t.lt(3)
t.fd(a)
t.end_fill()
# 耳朵
t.color((255, 155, 192), "pink")
t.pu()
t.seth(90)
t.fd(-7)
t.seth(0)
t.fd(70)
t.pd()
t.begin_fill()
t.seth(100)
t.circle(-50, 50)
t.circle(-10, 120)
t.circle(-50, 54)
t.end_fill()
t.pu()
t.seth(90)
t.fd(-12)
t.seth(0)
t.fd(30)
t.pd()
t.begin_fill()
t.seth(100)
t.circle(-50, 50)
t.circle(-10, 120)
t.circle(-50, 56)
t.end_fill()
# 眼睛
t.color((255, 155, 192), "white")
t.pu()
t.seth(90)
t.fd(-20)
t.seth(0)
t.fd(-95)
t.pd()
t.begin_fill()
t.circle(15)
t.end_fill()
t.color("black")
t.pu()
t.seth(90)
t.fd(12)
t.seth(0)
t.fd(-3)
t.pd()
t.begin_fill()
t.circle(3)
t.end_fill()
t.color((255, 155, 192), "white")
t.pu()
t.seth(90)
t.fd(-25)
t.seth(0)
t.fd(40)
t.pd()
t.begin_fill()
t.circle(15)
t.end_fill()
t.color("black")
t.pu()
t.seth(90)
t.fd(12)
t.seth(0)
t.fd(-3)
t.pd()
t.begin_fill()
t.circle(3)
t.end_fill()
# 腮
t.color((255, 155, 192))
t.pu()
t.seth(90)
t.fd(-95)
t.seth(0)
t.fd(65)
t.pd()
t.begin_fill()
t.circle(30)
t.end_fill()
# 嘴
t.color(239, 69, 19)
t.pu()
t.seth(90)
t.fd(15)
t.seth(0)
t.fd(-100)
t.pd()
t.seth(-80)
t.circle(30, 40)
t.circle(40, 80)
# 身体
t.color("red", (255, 99, 71))
t.pu()
t.seth(90)
t.fd(-20)
t.seth(0)
t.fd(-78)
t.pd()
t.begin_fill()
t.seth(-130)
t.circle(100, 10)
t.circle(300, 30)
t.seth(0)
t.fd(230)
t.seth(90)
t.circle(300, 30)
t.circle(100, 3)
t.color((255, 155, 192), (255, 100, 100))
t.seth(-135)
t.circle(-80, 63)
t.circle(-150, 24)
t.end_fill()
# 手
t.color((255, 155, 192))
t.pu()
t.seth(90)
t.fd(-40)
t.seth(0)
t.fd(-27)
t.pd()
t.seth(-160)
t.circle(300, 15)
t.pu()
t.seth(90)
t.fd(15)
t.seth(0)
t.fd(0)
t.pd()
t.seth(-10)
t.circle(-20, 90)
t.pu()
t.seth(90)
t.fd(30)
t.seth(0)
t.fd(237)
t.pd()
t.seth(-20)
t.circle(-300, 15)
t.pu()
t.seth(90)
t.fd(20)
t.seth(0)
t.fd(0)
t.pd()
t.seth(-170)
t.circle(20, 90)
# 脚
t.pensize(10)
t.color((240, 128, 128))
t.pu()
t.seth(90)
t.fd(-75)
t.seth(0)
t.fd(-180)
t.pd()
t.seth(-90)
t.fd(40)
t.seth(-180)
t.color("black")
t.pensize(15)
t.fd(20)
t.pensize(10)
t.color((240, 128, 128))
t.pu()
t.seth(90)
t.fd(40)
t.seth(0)
t.fd(90)
t.pd()
t.seth(-90)
t.fd(40)
t.seth(-180)
t.color("black")
t.pensize(15)
t.fd(20)
# 尾巴
t.pensize(4)
t.color((255, 155, 192))
t.pu()
t.seth(90)
t.fd(70)
t.seth(0)
t.fd(95)
t.pd()
t.seth(0)
t.circle(70, 20)
t.circle(10, 330)
t.circle(70, 30)
t.done()