empty list python and fill it at specific position

Solutions on MaxInterview for empty list python and fill it at specific position by the best coders in the world

showing results for - "empty list python and fill it at specific position"
Manuela
17 Jan 2020
1l = [None for _ in range(200)]
2l[2] = 2
3l[177] = 177
4