怎么查看 min() 函数源代码, 在哪个文件下? 我电脑没有 pycharm之类的IDE,
2 回答
jeck猫
TA贡献1909条经验 获得超7个赞
123456789 | 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. |
添加回答
举报
0/150
提交
取消