What I'm trying to do is click twice on the canvas and get the event.x and event.y for both the mouse clicks so I can use it draw primitives.
I would like to use the two sets of event values to calculate the distance and use it as a radius to draw circle.
At the moment I am able to get it only for a single click.
def leftClick(event=None):
print("left",event.x,event.y)
c.bind("<Button-1>",leftClick)