Inspiration
I made this project under the MLH INIT 2022 Day-4 challenges.
What it does
It is a python script that generates random numbers.
How we built it
I made it using python
import random
num = random.random() # this will generate random numbers between 0 and 1.
print(num)
to generate random number between a range.
import random
num = random.random(1, 100) # limit is 0 to 100
print(num)
More about random number generator
This can be used as a snippet for a CP challenge.

Log in or sign up for Devpost to join the conversation.