create an empty list of size n python code example
Example 1: python initialize list length n
Creating an empty list:
>>> l = [None] * 10
>>> l
[None, None, None, None, None, None, None, None, None, None]
Example 2: py create empty list
a = []
print("Values of a:", a)
print("Type of a: ", type(a))
print("Size of a: ", len(a))
Example 3: python list of size
li = [None] * 5
li = [0] * 5
Example 4: python how to make an empty list
list = list()
Example 5: 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]