#To create a list of integer values that has random length with random values:
import random
#name of your list = (random.sample(range(of num the list elements has to be
#within),
#random.randint(range (of numbers your length of list may be))
list = (random.sample(range(1,10),random.randint(1,3)))
print(list)
#here list will have 3 elements and
#the elements will be witin 1 to 10
import random
choose = ["Egg","Rat","Rabbit","Frog","Human"]
Choosen = random.choice(choose)
print(Choosen)
import random
# list of n elements, going between a and b
list = [random.randint(a,b) for _ in range(n)]
print("list:", list)
from num_tool import random_num_list
print(random_num_list(0, 5, length=20))
import random
n = random.random()
print(n)