Python面试真题- 如何解释 Python 中的 help() 函数和 dir() 函数 ?
【Python面试真题】- 如何解释 Python 中的 help() 函数和 dir() 函数 ?
help() 函数返回帮助文档和参数说明:
运行结果如下:
Help on function copy in module copy
copy(x)
Shallow copy operation on arbitrary Python objects.
See the module』s __doc__ string for more info.
dir() 函数返回对象中的所有成员 (任何类型)
与 C++不同, 在 Python 中我们不需要使用 ? 符号,而是使用如下语法:
[on true] if [expression]else [on false]
如果 [expression] 为真, 则 [on true] 部分被执行。如果表示为假则 [on false] 部分被执行