how could i double a number when clicked on in the graphics window?... this is for graphics.py and a line separating the two sides in the graphics window and on each click on either side it must go up by 2 until 12? i can only think of using a loop?
for i in range(12):
print i+2
from graphics import *
def tableTennisScorrer():
w=250
h=250
win= Graphwin("table tennis", w, h)
line = Line(Point(, 250), Point(0, 250))
line.draw(win)