查找数字列表中最大(最大、最大)的数字
How can I easily find the greatest number in a given list of numbers?
See also How do I find the maximum (larger, greater) of 2 numbers? - in that special case, the two values can also be compared directly.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
怎么样
max()
What about
max()
您可以使用带有多个参数的内置函数
max()
:或列表:
或实际上任何可迭代的东西。
You can use the inbuilt function
max()
with multiple arguments:or a list:
or in fact anything iterable.
另外,如果您想找到结果最大值的索引,
max() 函数返回具有最高值的项目,或可迭代中具有最高值的项目
示例:当您必须在整数/数字上查找最大值时
示例:当你有字符串时,
它基本上返回具有最高值的名称,按字母顺序排列。
Also if you want to find the index of the resulting max,
max() function returns the item with the highest value, or the item with the highest value in an iterable
Example: when you have to find max on integers/numbers
Example: when you have string
It basically returns the name with the highest value, ordered alphabetically.
使用 max()
Use
max()
max
是Python中的内置函数,用于从序列中获取最大值,即(列表、元组、集合等)max
is a builtin function in python, which is used to get max value from a sequence, i.e (list, tuple, set, etc..)你实际上可以对它进行排序:
你得到:
但如果想获得最大值,仍然可以:
你得到:
如果第二个最大值:
依此类推......
You can actually sort it:
You get:
But still if want to get the max do:
You get:
if second max:
and so on...