I am looking at python and I want to allow the user to click on the centre of the screen and create a circle, this is what I have.
Any help will be very appricated.
import from graphics *
def blueCircle():
win = GraphWin("Click Here")
p = win.getMouse()
circle1 = Circle(Point(p.getX, p.getY) ,50)
circle1.setFill("Blue")