Answers for "what function assigns a random value in python"

10

python function to print random number

import random
n = random.randint(0,22)
print(n)
Posted by: Guest on June-03-2020
0

how to make a random int in python

random.randint(0, 100)
##This would make the random number be from 0 to 100
Posted by: Guest on January-15-2021

Code answers related to "what function assigns a random value in python"

Python Answers by Framework

Browse Popular Code Answers by Language