Python Numpy ndarray.T

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]]

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程