python初始化固定大小的一维数组

>>> lst = [None] * 5
>>> lst
[None, None, None, None, None]

你可能感兴趣的:(python)