在Python中,可以使用以下方式定义长度为n的空数组:
arr = [None] * n
range()
arr = [None for _ in range(n)]
numpy
import numpy as np arr = np.empty(n)