在 Python 中,dir() 是一個非常有用的函數(shù),它可以列出當(dāng)前作用域中的所有變量和方法。
>>>dir() ['__annotations__', '__builtins__', '__doc__', '__loader__', '__name__', '__package__', '__spec__']
上述代碼中,我們使用 dir() 函數(shù)列出當(dāng)前作用域中的變量和方法。在默認(rèn)情況下,它會返回一個包含字符串的列表。
dir() 函數(shù)還可以用于列出指定模塊或?qū)ο蟮膶傩裕?/p>
>>>import math >>>dir(math) ['__doc__', '__file__', '__loader__', '__name__', '__package__', '__spec__', 'acos', 'acosh', 'asin', 'asinh', 'atan', 'atan2', 'atanh', 'ceil', 'comb', 'copysign', 'cos', 'cosh', 'degrees', 'dist', 'e', 'erf', 'erfc', 'exp', 'expm1', 'fabs', 'factorial', 'floor', 'fmod', 'frexp', 'fsum', 'gamma', 'gcd', 'hypot', 'inf', 'isclose', 'isfinite', 'isinf', 'isnan', 'isqrt', 'lcm', 'ldexp', 'lgamma', 'log', 'log10', 'log1p', 'log2', 'modf', 'nan', 'nextafter', 'perm', 'pi', 'pow', 'prod', 'radians', 'remainder', 'sin', 'sinh', 'sqrt', 'tan', 'tanh', 'tau', 'trunc']
上述代碼中,我們使用 dir() 函數(shù)列出了 math 模塊中的屬性。
需要注意的是,函數(shù)和模塊的屬性名稱前面都是以雙下劃線“__”開頭和結(jié)尾的,而這些屬性一般是 Python 解釋器保留的。
在使用 dir() 函數(shù)時,我們可以將結(jié)果與其他函數(shù)和模塊的文檔結(jié)合起來使用,從而更好地理解 Python 中可用的方法和變量。