mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-26 06:48:04 +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)
|