Home > Article > Backend Development > How to draw a smiling face using python
Drawing a smiley face in Python can be achieved using the turtle library.
1. Open idel, create a new py file through idel, enter the following code in the blank file and press F5 to run the file and you can draw a smiley face.
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. The running results are as follows:
For more Python-related technical articles, please visit Python Tutorialcolumn for learning!
The above is the detailed content of How to draw a smiling face using python. For more information, please follow other related articles on the PHP Chinese website!