python 内置函数 min在哪个文件里面

怎么查看 min() 函数源代码, 在哪个文件下? 我电脑没有 pycharm之类的IDE,

Yexiaomo
浏览 1311回答 1
1回答

pardon110

C:\Users\Administrator> pydoc 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.
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python