create empty list python of size code example
Example 1: python how to make an empty list
list = list()
Example 2: how to create an empty list of certain length in python
>>> l = [None] * 10
>>> l
[None, None, None, None, None, None, None, None, None, None]