python用list存取数组

    xiaoxiao2021-03-25  183

    x = arange(6).reshape(2,3) y = arange(9).reshape(3,3) z = arange(12).reshape(3,4) B = [] B.append(x) B.append(y) B.append(z) for i in range(3): print B[i]
    转载请注明原文地址: https://ju.6miu.com/read-1885.html

    最新回复(0)