gpt4 book ai didi

python - 获取python标准库函数名称列表

转载 作者:行者123 更新时间:2023-12-01 07:59:24 25 4
gpt4 key购买 nike

我可以使用dir(__builtins__)获取Python内置函数的列表。我想知道是否有办法获取 python 标准库的函数名称列表,包括 appendMath.exp 等。

最佳答案

appendlist类的一个方法,相应地你可以从dir(list)中获取它。

同样,math.exp是模块math的自由函数,并且dir(math)包含exp > 正如预期的那样。

假设您只需要方法/函数,并假设您想避免非公共(public)属性,也许您可​​以这样做:

import math

def is_public(name):
return not (name.startswith('__') and name.endswith('__'))

def get_functions(source):
return [name for name in dir(source) if callable(getattr(source, name)) and is_public(name)]

print(f'Methods of class list: {get_functions(list)}', end='\n\n')
print(f'Functions of module math: {get_functions(math)}')

输出:

Methods of class list: ['append', 'clear', 'copy', 'count', 'extend', 'index', 'insert', 'pop', 'remove', 'reverse', 'sort']

Functions of module math: ['acos', 'acosh', 'asin', 'asinh', 'atan', 'atan2', 'atanh', 'ceil', 'copysign', 'cos', 'cosh', 'degrees', 'erf', 'erfc', 'exp', 'expm1', 'fabs', 'factorial', 'floor', 'fmod', 'frexp', 'fsum', 'gamma', 'gcd', 'hypot', 'isclose', 'isfinite', 'isinf', 'isnan', 'ldexp', 'lgamma', 'log', 'log10', 'log1p', 'log2', 'modf', 'pow', 'radians', 'remainder', 'sin', 'sinh', 'sqrt', 'tan', 'tanh', 'trunc']

如果您确实需要所有属性,则可以删除is_public条件。

关于python - 获取python标准库函数名称列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55789539/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com