Answers for "random module in pytohn"

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

Python Answers by Framework

Browse Popular Code Answers by Language