Skip to content

Instantly share code, notes, and snippets.

@IndhumathyChelliah
Created January 20, 2021 07:50
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/7497f058647721b18c4007504dbeafd2 to your computer and use it in GitHub Desktop.
Save IndhumathyChelliah/7497f058647721b18c4007504dbeafd2 to your computer and use it in GitHub Desktop.
import numpy as np
a1=np.array([[1,2],[3,4]])
#Transpose of an array
print (a1.T)
#Output:
[[1 3]
[2 4]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment