Answers for "finding random numbers python"

0

finding random numbers python

#importation
from random import seed
from random import randint

seed(1) #the seed. a random number genorator

for _ in range(10): #how many times you wanna do it
	value = randint(0, 10) #gonna random 0 out of 10
	print(value) #gonna print the random value
Posted by: Guest on February-18-2022

Code answers related to "finding random numbers python"

Python Answers by Framework

Browse Popular Code Answers by Language