猿问

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

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

FFIVE
浏览 272回答 2
2回答

jeck猫

123456789C:\Users\Administrator> pydoc minHelp 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.

POPMUISE

虽然很详细,但还是想看源码, 怎么办?
随时随地看视频慕课网APP

相关分类

Python
我要回答