This random block uses only math operations and one line of "code" my python code: # start of the programm import time from math import fmod def my_random(seed, minimum, maximum, use_time=False): return minimum+round(fmod(fmod(((((time.time()*use_time)+seed)*3658679)+1),maximum),maximum-minimum)) # this will print 100 random numbers for i in range(100): print(my_random(i, 0, 100)) input() # end of the programm
if you don't have any python compiler you can just go to the website: https://www.programiz.com/python-programming/online-compiler/ or download a python compiler: pycharm(JetBrains): https://www.jetbrains.com/pycharm/download VS Code(Microsoft): https://visualstudio.microsoft.com/downloads/