gpt4 book ai didi

python - 我可以检查 pandas dataframe 索引是否结束?

转载 作者:行者123 更新时间:2023-12-01 09:12:10 25 4
gpt4 key购买 nike

我使用 while 循环在数据框中显示数据

while True:
last_id = get_last_id()
res = df.iloc[last_id + 1]

当 last_id 数据结束并且仍然使用 last_id + 1 时显示错误

IndexError: single positional indexer is out-of-bounds

我可以检查数据帧索引中是否没有 last_id + 1 然后不显示任何内容吗?

最佳答案

为什么不直接从最后一行删除 +1:

while True:
last_id = get_last_id()
res = df.iloc[last_id]

关于python - 我可以检查 pandas dataframe 索引是否结束?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59319399/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com