Python 列表帮助(查找最大数字)
好吧,我写了这个脚本:
i=1024;
a=[0]*i;
for k in range(0,i):
a[k]=(k*k*k*k-74*k*k+173) % 1000033
print a
我不明白如何找到列表中最大的数字及其位置。
Ok, I have this script that i wrote:
i=1024;
a=[0]*i;
for k in range(0,i):
a[k]=(k*k*k*k-74*k*k+173) % 1000033
print a
I don't understand how to find the biggest number in the list AND its position.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
这是一种方法:
在您的示例中,值是 999926,索引是 2。
Here's one way:
In your example, value is 999926 and index is 2.
只要保持运行轨迹,那么您就不需要列表:
输出:
PS
i = 1048576
花了几秒钟然后吐出:请注意,它在某处切换为长整数。这是 Python 2.6.1 的情况。
PPS 另请注意,此方法仅查找具有最大值的最低索引。要获得最高索引,请将
<
替换为<=
:Just keep a running track, then you don't need the list:
Output:
P.S.
i = 1048576
took a couple seconds and spat out:Note that it switched to long integers in there somewhere. This is with Python 2.6.1.
P.P.S. Also note that this method only finds the lowest index with the maximum. To get the highest index, replace the
<
with<=
: