python generate coordinates code example
Example 1: how to use coordinates in python
setposition(x,y)#Can also be setpos()
Example 2: generate coordinates python
coordinates = []
for x in xrange(width):
for y in xrange(height):
coordinates.append((x, y))