pytris/test.py

5 lines
115 B
Python
Raw Normal View History

2021-05-23 14:16:36 +00:00
def curve(lvl):
return 1/(0.8-((lvl-1)*0.007))**(lvl-1)*0.016666
2021-05-22 16:39:54 +00:00
2021-05-23 14:16:36 +00:00
for i in range(0, 30):
print(i, curve(i))