Python:具有用于跳过的一对值的运算符

时间:2018-09-24 14:18:17

标签: python

我了解:运算符之类的基本概念:

A[:] Returns the entire array
A[::-1] Returns the array in reverse.

但是假设iris.data是一个n X 4矩阵,这是怎么做的?

X = iris.data[:, (2,3)]

1 个答案:

答案 0 :(得分:1)

它将使您从所有行中获得第二和第三列。

在这里您可以找到更多信息:python-slicing-a-multi-dimensional-arrayUnderstanding Python's slice notation