how to create an array to numpy array?
def test(X, N): [n,T] = X.shape print \"n : \", n print \"T : \", T if __name__==\"__main__\": X =
İf you have list, you can print its shape as if it is converted to array
import numpy as np print(np.asarray(X).shape)