📜  Python| numpy ndarray.T

📅  最后修改于: 2022-05-13 01:55:28.498000             🧑  作者: Mango

Python| numpy ndarray.T

Numpy ndarray.T对象的帮助下,我们可以对维度大于或等于 2 的数组进行置。

示例 #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]]