Answers for "python print random amount of"

84

random number python

# generate random integer values
from random import randint

value = randint(0, 10)
print(value)
Posted by: Guest on February-15-2020
1

how to make a random variable in python

import random
value = randint(1,10)
#1 and 10 represent the range for your random value
print(value)
Posted by: Guest on March-25-2020

Code answers related to "python print random amount of"

Python Answers by Framework

Browse Popular Code Answers by Language