Python| numpy ndarray.T
在Numpy ndarray.T
对象的帮助下,我们可以对维度大于或等于 2 的数组进行转置。
Syntax : ndarray.T
Return : Transpose of an array
示例 #1:
在这个例子中,我们可以看到在ndarray.T
对象的帮助下,我们能够转换一个数组。
# import the important module in python
import numpy as np
# make an array with numpy
gfg = np.array([[1, 2, 3], [4, 5, 6]])
# applying ndarray.T object
geeks = gfg.T
print(geeks)
输出:
[[1 4]
[2 5]
[3 6]]
示例 #2:
# import the important module in python
import numpy as np
# make an array with numpy
gfg = np.array([[1, 2, 3, 4], [4, 5, 6, 7], [7, 8, 9, 0]])
# applying ndarray.T object
geeks = gfg.T
print(geeks)
输出:
[[1 4 7]
[2 5 8]
[3 6 9]
[4 7 0]]