applying a condition then append the results to an empty list python 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