Drawing Emotions with Python Turtle Module (Smiley Face, Frown, Mad, Sick). - Use the python turtle module to draw a smiley face, frown face, angry face, or sick face)
Starting code:
import turtle #to include the turtle module in your python program
s=turtle.Screen( ) #create a blank canvas to draw on
t=turtle.Turtle(shape='turtle') # draw with a turtle shape
t.color('pencolor', 'fill color') #specify the line color and fill colors
t.circle(100) #draw a circle with radius 100