how to make a function that takes an input and appends it to an empty list code example
Example: empty list python and fill it at specific position
l = [None for _ in range(200)]
l[2] = 2
l[177] = 177
l = [None for _ in range(200)]
l[2] = 2
l[177] = 177