You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CSC221/Week-3/Pretty-picture/Challenges1.py

17 lines
441 B
Python

from gasp import *
#The below link will give you a total understanding of Coordinate Plan
# https://www.splashlearn.com/math-vocabulary/geometry/coordinates
begin_graphics()
Circle((300, 350), 90)#This cirecle represent head
Circle((350, 370), 15) #This circle represent left eye
Circle((250, 370), 15) #This circle represent left eye
Arc((300, 350), 40, 225, 330)
Line((300, 400), (230, 250))
update_when("key_pressed")
end_graphics()