a=np.arange(10,49) b=np.array([]) for num in range(len(a)//2,-1): b=np.append(a[num]) print(b) This still gives an empty array as output.
確定! 回上一頁