python use list of fixed size 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]