gpt4 book ai didi

python - 我可以获取 python 对象的所有方法吗?

转载 作者:太空宇宙 更新时间:2023-11-04 08:05:49 25 4
gpt4 key购买 nike

我想获取对象的所有方法。我知道函数 dir 但它返回 all(method, attr, meta_data)。

我试过这个:

[x for x in dir(obj) if "_" not in x]

但它不能正常工作。

我该怎么做?

最佳答案

你需要看inspect .例如

inspect.getmembers(object, inspect.ismethod)

它只返回方法。

关于python - 我可以获取 python 对象的所有方法吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31423492/

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