Python面試真題- 如何解釋 Python 中的 help() 函數(shù)和 dir() 函數(shù) ??
【Python面試真題】- 如何解釋 Python 中的 help() 函數(shù)和 dir() 函數(shù) ?
help() 函數(shù)返回幫助文檔和參數(shù)說明:
運(yùn)行結(jié)果如下:
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() 函數(shù)返回對象中的所有成員 (任何類型)
與 C++不同, 在 Python 中我們不需要使用 ? 符號(hào),而是使用如下語法:
[on true] if [expression]else [on false]
如果 [expression] 為真, 則 [on true] 部分被執(zhí)行。如果表示為假則 [on false] 部分被執(zhí)行