mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-26 06:48:04 +02:00
7 lines
151 B
Python
7 lines
151 B
Python
def give_coordinates(n):
|
|
for y in range(0, n):
|
|
for x in range(y, 2*n-y, 2):
|
|
print(x, y)
|
|
print("")
|
|
|
|
give_coordinates(5)
|