This commit is contained in:
Xevion
2019-07-25 22:21:56 -06:00
parent 4d47e92610
commit 5948e26c4e
25 changed files with 1139 additions and 0 deletions

14
randrange.py Normal file
View File

@@ -0,0 +1,14 @@
from random import random
import math
def gen():
#int(return random()*(16)-12)
return random()*(16)-12
top = gen()
bot = gen()
for _ in range(5000000):
top = max(gen(), top)
bot = min(gen(), bot)
print("bot {} top {}".format(bot, top))