Skip to content

Instantly share code, notes, and snippets.

@IndhumathyChelliah
Created January 19, 2021 06:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IndhumathyChelliah/3bfb0375609eb9458b16ca857086d720 to your computer and use it in GitHub Desktop.
Save IndhumathyChelliah/3bfb0375609eb9458b16ca857086d720 to your computer and use it in GitHub Desktop.
import numpy as np
a1=np.genfromtxt("num1.csv",delimiter=",")
print (a1.shape)
#Output:(6, 9)
print (a1.dtype)
#Output:float64
print (a1.ndim)
#Output:2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment