📅  最后修改于: 2023-12-03 14:46:32.511000             🧑  作者: Mango
要访问Python中pandas DataFrame中的最后一个元素,可以使用iloc属性和-1的索引。
示例代码:
import pandas as pd
# 创建DataFrame
df = pd.DataFrame({'A': [1, 2, 3], 'B': [4, 5, 6], 'C': [7, 8, 9]})
# 使用iloc和-1索引获取最后一个元素的值
last_element = df.iloc[-1]
print(last_element)
输出结果:
A 3
B 6
C 9
Name: 2, dtype: int64
其中,-1
表示倒数第一个元素,iloc[-1]
表示通过整数位置索引获取最后一个元素的值。
要访问最后一个元素的索引,可以使用index[-1]
。
示例代码:
import pandas as pd
# 创建DataFrame
df = pd.DataFrame({'A': [1, 2, 3], 'B': [4, 5, 6], 'C': [7, 8, 9]})
# 获取最后一个元素的索引值
last_index = df.index[-1]
print(last_index)
输出结果:
2
其中,index[-1]
表示通过整数位置索引获取最后一个元素的索引值。
以上就是Python中pandas DataFrame中最后一个元素的访问索引的介绍。