Python——turtle练手

Python——turtle练手_第1张图片

这个不算坐标画出来的就是不一样

import turtle as t


# 创建画布
t.setup(800,800)
# 显示画笔
t.showturtle()
# 更改画笔图形为小海龟
t.shape('turtle')
# 调整画笔size
t.pensize(3)
# 提起画笔
t.up()
# 移动画笔
t.goto(-100,100)
# 放下画笔
t.pd()

# 开始画图
# 设置方向
t.setheading(115)

# 画耳朵
t.circle(30,220)

# 调整角度
t.setheading(256)

# 画左侧身体
t.circle(500,20)



# 设置方向
t.setheading(275)

t.circle(50,20)

# 画左脚
t.setheading(260)
t.circle(80,20)

t.setheading(30)
t.circle(80,20)

t.setheading(350)
t.circle(300,20)


# 画右脚
t.setheading(260)
t.circle(80,20)

t.setheading(30)
t.circle(80,20)

# 右侧身体
t.setheading(68)
t.circle(470,27)

# 右耳朵
t.setheading(30)
t.circle(30,220)

# 调整角度
t.setheading(155)
t.circle(100,47)
t.goto(-100,100)


# t抬笔
t.penup()

# 移动画笔
t.goto(-90,50)
t.pendown()
t.dot(15,'black')

t.penup()
t.goto(-10,45)
t.dot(15,'black')


# 画鼻子

t.penup()
t.goto(-100,0)
t.pendown()
t.setheading(300)
t.circle(30, 40)
t.circle(80,45)
t.circle(30, 40)
t.setheading(120)
t.circle(30, 40)
t.circle(80,45)
t.circle(30, 40)


# 移动画笔
# 鼻孔
#
t.up()
t.goto(-40,2)
t.pendown()
t.dot(10,'black')

t.penup()
t.goto(-70,3)
t.dot(10,'black')

t.hideturtle()

t.goto(-100,200)
t.color("#4B00B2")
t.write('事实就是没天赋', move=True, align="left", font=("宋体", 30, "bold"), )

t.done()




你可能感兴趣的:(Python——turtle练手)