mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-18 03:05:35 +00:00
10 lines
103 B
Python
10 lines
103 B
Python
|
|
d = 16
|
|
s = 800
|
|
|
|
for n in range(0,128):
|
|
z = n/2+d
|
|
y = s/z
|
|
print("%d," % y, end='')
|
|
print()
|