Here is the script! Let me know @Hamezii if you need a .py file.

import time
def rng():
    """Return a psuedo-random number between 0 and 1"""
    t = time.time() % 1
    # Repeatedly adding different amounts of itself
    for i in range(-2, 5):
        t += t/pow(10, i)
    return t % 1

if __name__ == "__main__":
    print(rng())

Built With

Share this project:

Updates