Trouver des nombres aléatoires 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
dl.idiot..