python create array of size n with init value code example
Example: intialize array to certain lenght python
>>> lst = [None] * 5
>>> lst
[None, None, None, None, None]
>>> lst = [None] * 5
>>> lst
[None, None, None, None, None]