Python Numpy ndarray.T
在Numpy ndarray.T对象的帮助下,我们可以对一个维度大于等于2的数组进行转置。
语法:ndarray.T
返回:数组的移位
例子#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]]