Python - 如何访问 Pandas 数列中的最后一个元素?
我们将使用 iat 属性来访问最后一个元素,因为它用于通过整数位置访问行/列对的单个值。
让我们首先导入所需的 Pandas 库 −
import pandas as pd
使用数字创建一个 Pandas 数列 −
data = pd.Series([10, 20, 5, 65, 75, 85, 30, 100])
现在,使用 iat() 获取最后一个元素 −
data.iat[-1]
示例
以下为其代码 −
import pandas as pd # pandas series data = pd.Series([10, 20, 5, 65, 75, 85, 30, 100]) print"Series...\n",data # get the first element print"The first element in the series = ", data.iat[0] # get the last element print"The last element in the series = ", data.iat[-1]
输出
此代码将产生以下输出 −
Series... 0 10 1 20 2 5 3 65 4 75 5 85 6 30 7 100 dtype: int64 The first element in the series = 10 The last element in the series = 100
广告