import random #makes a list with a length of 100 with random numbers where 0<=n<=100 l = [random.randint(0, 100) for i in range(100)]