gpt4 book ai didi

python - for循环与python中的子列表

转载 作者:太空宇宙 更新时间:2023-11-04 10:24:42 25 4
gpt4 key购买 nike

我正在尝试使用此循环进行计算并将变量附加到 python 中的子列表:

for latLong in latLongList[:-1]:
distance = findDistance(latLong[0], latLong[1], usrLocation[0], usrLocation[1])
latLong.append(distance)

它工作得很好,除了它不对最后一个子列表执行操作,我很困惑为什么会这样。我知道我必须修改我的循环定义以包含最后一个元素,但我不确定如何修改。任何帮助将不胜感激!

最佳答案

如果你想包含最后一个元素,循环到最后一个元素:

for latLong in latLongList:
distance = findDistance(latLong[0], latLong[1], usrLocation[0], usrLocation[1])
latLong.append(distance)

关于python - for循环与python中的子列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30036833/

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