如何获取 python 类的名称?

发布于 2024-07-21 02:53:03 字数 237 浏览 9 评论 0原文

当我有一个对象 foo 时,我可以通过

str(foo.__class__)

我需要的东西来获取它的类对象,但是我需要的只是类的名称(例如“Foo”),上面的内容会给我一些类似

"<class 'my.package.Foo'>"

我知道我可以得到它的东西使用正则表达式很容易,但我想知道是否有更“干净”的方法。

When I have an object foo, I can get it's class object via

str(foo.__class__)

What I would need however is only the name of the class ("Foo" for example), the above would give me something along the lines of

"<class 'my.package.Foo'>"

I know I can get it quite easily with a regexp, but I would like to know if there's a more "clean" way.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

云胡 2024-07-28 02:53:03

尝试

__class__.__name__

Try

__class__.__name__
呆橘 2024-07-28 02:53:03

foo.__class__.__name__ 应该给你你需要的结果。

foo.__class__.__name__ should give you result you need.

圈圈圆圆圈圈 2024-07-28 02:53:03
Python 3.0.1 (r301:69561, Feb 13 2009, 20:04:18) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> class foo:
...     x = 1
...
>>> f = foo()
>>> f.__class__.__name__
'foo'
>>>
Python 3.0.1 (r301:69561, Feb 13 2009, 20:04:18) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> class foo:
...     x = 1
...
>>> f = foo()
>>> f.__class__.__name__
'foo'
>>>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文