gpt4 book ai didi

python - 如何使用 Python 获取当前文件、当前类和当前方法?

转载 作者:IT老高 更新时间:2023-10-28 22:03:27 26 4
gpt4 key购买 nike

  • 运行代码的文件名
  • 运行代码的类的名称
  • 运行代码的方法名称(类的属性)

最佳答案

以下是每个示例:

from inspect import stack

class Foo:
def __init__(self):
print __file__
print self.__class__.__name__
print stack()[0][3]

f = Foo()

关于python - 如何使用 Python 获取当前文件、当前类和当前方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/894088/

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