Random Number Generator
https://repl.it/@itbarsoum/Random-Number-Generator
Generates a random number between 1 and 50. Change the maximum number by changing the number in the print(rollone(50)) function. See image.
https://repl.it/@itbarsoum/Random-Number-Generator
Generates a random number between 1 and 50. Change the maximum number by changing the number in the print(rollone(50)) function. See image.
from random import randint
print(randint(0, 50))