python create list of size n with 0value code example
Example: python create a list with fixed size
>>> [None]*10
[None, None, None, None, None, None, None, None, None, None]
>>> [None]*10
[None, None, None, None, None, None, None, None, None, None]