import random
min_time = 5
max_time = 50
random_time_list = [random.choice(range(min_time+1, max_time)) for i in range(10)]
print('random.choice ---- ', random_time_list)
random.choice ---- [29, 33, 33, 42, 18, 49, 13, 25, 16, 25]
import random
min_time = 5
max_time = 50
random_time_list = random.choices(range(min_time, max_time), k=10)
print('random.choices ---- ', random_time_list)
random.choices ---- [33, 33, 26, 8, 37, 27, 7, 11, 16, 26]