python list into fixed length list 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]