Answers for "do you get the number that you put when you randomis python"

8

python make a random number

# generate random integer values
from random import seed
from random import randint
# seed random number generator
seed(1)
# generate some integers
for _ in range(10):
	value = randint(0, 10)
	print(value)
Posted by: Guest on February-26-2020
3

random number pythn

import random
n = random.randint(0,22)
print(n)

# Output: 2
Posted by: Guest on August-23-2020

Code answers related to "do you get the number that you put when you randomis python"

Python Answers by Framework

Browse Popular Code Answers by Language