python 创建一维的0向量

第一种方法:
A=[0]*8

第二种方法:
import numpy as np
A=np.zeros(8)

猜你喜欢

转载自blog.csdn.net/TH_NUM/article/details/80339386