这篇文章主要介绍了python画图代码大全画雪人,具有一定借鉴价值,需要的朋友可以参考下。希望大家阅读完这篇文章后大有收获,下面让小编带着大家一起了解一下。

效果图如下:
代码如下:
import turtle
t = turtle.Turtle()
t.speed(0)
# 右眼睛
t.up()
t.goto(80,80)
t.down()
t.begin_fill()
t.circle(20)
t.end_fill()
# 右眉毛
t.up()
t.left(40)
t.goto(50,120)
t.down()
t.circle(-50,90)
t.up()
t.seth(0)
# 左眼睛
t.goto(-80,80)
t.down()
t.begin_fill()
t.circle(20)
t.end_fill()
# 左眉毛
t.up()
t.left(40)
t.goto(-110,120)
t.down()
t.circle(-50,90)
t.up()
# 重置画笔角度
t.seth(0)
# 鼻子
t.up()
t.goto(0,40)
t.down()
t.color('red')
t.begin_fill()
t.circle(-40,steps=3)
t.end_fill()
# 嘴巴
t.up()
t.color('black')
t.go
本文详细介绍了使用Python的turtle库编写的雪人画图代码,包括眼睛、眉毛、鼻子和嘴巴的绘制过程,适合初学者参考学习。
1089

被折叠的 条评论
为什么被折叠?



