idle python 怎么用help

2025-04-07 05:12:35
推荐回答(2个)
回答1:

>>> help(max)
Help on built-in function max in module __builtin__:

max(...)
max(iterable[, key=func]) -> value
max(a, b, c, ...[, key=func]) -> value

With a single iterable argument, return its largest item.
With two or more arguments, return the largest argument.

>>>
#输入help(查看内容)就好

回答2:

help(function_name)