Python 3 内置函数 - `min()`函数
2022/3/20 17:31:28
本文主要是介绍Python 3 内置函数 - `min()`函数,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
Python 3 内置函数 - min()
函数
0. min()
函数
返回最小值,参数可以为序列。
1. 使用方法
>>> help(min)
Help on built-in function min in module builtins: min(...) ## 使用方法: min(iterable, *[, default=obj, key=func]) -> value min(arg1, arg2, *args, *[, key=func]) -> value With a single iterable argument, return its smallest item. The default keyword-only argument specifies an object to return if the provided iterable is empty. With two or more arguments, return the smallest argument.
2. 使用示例
示例1.
>>> min([1,2,3,0])
# output: 0
示例2.
>>> list(range(5)), min(range(3))
# output: ([0, 1, 2, 3, 4], 0)
这篇关于Python 3 内置函数 - `min()`函数的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-01Python编程基础知识
- 2024-11-01Python编程基础
- 2024-10-31Python基础入门:理解变量与数据类型
- 2024-10-30Python股票自动化交易资料详解与实战指南
- 2024-10-30Python入行:新手必读的Python编程入门指南
- 2024-10-30Python入行:初学者必备的编程指南
- 2024-10-30Python编程入门指南
- 2024-10-30Python量化交易学习:新手入门指南
- 2024-10-30Python股票自动化交易实战入门教程
- 2024-10-29Python股票自动化交易教程:新手入门指南