Answers for "what is random module python"

5

random in python

#imports
import random
#randint generates a random number between the first set and the second set of parameters
x = random.randint(1, 100)
print(x)
Posted by: Guest on March-12-2021

Code answers related to "what is random module python"

Python Answers by Framework

Browse Popular Code Answers by Language