使用 enumerate(array) Python 访问数组中后面的索引
嘿伙计们,在这个 for 循环中,您如何从 100 个浮点数组中的 array[n] 访问数组(我需要枚举):
for index,value in enumerate(array):
#do stuff with array[n]
n=n+1
我试图使其每次迭代都在越来越小的空间中运行。
谢谢
hey guys, how would you access an array from array[n] in an array of 100 floats in this for loop (i need the enumerate):
for index,value in enumerate(array):
#do stuff with array[n]
n=n+1
im trying to make it so that it operates in a smaller and smaller space each iteration..
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能应该澄清您是否指的是列表、 numpy 数组、 array.array,或其他东西......
话虽如此,听起来你想切片任何你的“数组“ 是。也许是这样的?:
它将输出:
希望能有所帮助,无论如何......
You should probably clarify whether you mean a list, a numpy array, an array.array, or something else...
That having been said, it sounds like you want to slice whatever your "array" is. Perhaps something like this?:
Which would output:
Hope that helps a bit, anyway...