怎么用python实现画笑脸-LMLPHP

在Python中画笑脸可以使用turtle库实现。

1、打开idel,通过idel新建一个py文件,在空白的文件中输入下面的代码按F5运行此文件就可以画笑脸了。

from turtle import *
screensize(600,600)
speed(10)
 
#笑脸的小圆脸
pensize(5)
color('dim grey','yellow')
pu()
goto(0,-100)
begin_fill()
circle(100)
end_fill()
 
#腮红
#左侧
seth(90)
color('Light Pink','Light Pink')
pu()
goto(-55,-5)
pd()
begin_fill()
circle(20)
end_fill()
#右侧
color('Light Pink','Light Pink')
pu()
goto(55,-5)
pd()
begin_fill()
circle(-20)
end_fill()
 
#笑脸的眼睛
#左眼
color('dim grey','white')
pu()
goto(-10,22)
pd()
begin_fill()
circle(25)
end_fill()
#左瞳
color('dim grey','dim grey')
pu()
goto(-10,22)
seth(90)
pd()
begin_fill()
circle(25,-180)
end_fill()
#右眼
color('dim grey','white')
pu()
goto(10,22)
seth(90)
pd()
begin_fill()
circle(-25)
end_fill()
#右瞳
color('dim grey','dim grey')
pu()
goto(10,22)
seth(90)
pd()
begin_fill()
circle(-25,-180)
end_fill()
 
#笑脸的嘴巴
#左
pu()
goto(-4,-43)
seth(80)
pd()
circle(16,-200)
#右
pu()
goto(4,-43)
seth(110)
pd()
circle(-16,-185)
#连接
pu()
goto(4,-43)
seth(90)
pd()
circle(4,180)
 
hideturtle()
登录后复制

2、运行结果如下:

怎么用python实现画笑脸-LMLPHP

更多Python相关技术文章,请访问Python教程栏目进行学习!

以上就是怎么用python实现画笑脸的详细内容,更多请关注Work网其它相关文章!

09-05 07:21