I can't find the answer as why this code for range loop, behaves OK in 2.7 and not in 3.4.
from graphics import *
def main():
win = GraphWin("Click Me!")
for i in range(10):
p = win.getMouse()
print("you clicked at:", p.getX() , p.getY())
main()
output on 2.7 is: "you clicked at: 56 77 " once I click
output on 3.4 is" "you clicked at:" once I click then, 56 77
"you clicked at:
Is it range behaving different or print?