Guest User

Untitled

a guest
Feb 16th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. c = np.array([[1,2] , [3,4]])
  2.  
  3. print(c)
  4.  
  5. #[Output]:
  6. #[[1 2]
  7. # [3 4]]
  8.  
  9. print(c.shape)
  10.  
  11. #[Output]:
  12. #(2, 2)
  13.  
  14. print(c.dtype)
  15.  
  16. #[Output]:
  17. #int32
Add Comment
Please, Sign In to add comment