x y koordinat dalam python

coordinates = []

for x in range(11):
  for y in range(11):
    coordinates.append((x, y))
Lively Louse