mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-28 23:37:57 +02:00
7 lines
145 B
Python
7 lines
145 B
Python
def giveCoordinates(n):
|
|
for y in range(0,n):
|
|
for x in range(y,2*n-y,2):
|
|
print(x,y)
|
|
print("")
|
|
|
|
giveCoordinates(5)
|