gpt4 book ai didi

python - 如何在 Python 中继承 MatchObject?

转载 作者:行者123 更新时间:2023-11-28 17:53:41 26 4
gpt4 key购买 nike

我一直在研究正则表达式,并试图子类化从 re.search 返回的 MatchObject。

我没能访问 MatchObject 类。

我假设在此处输入代码,该对象的实际类型不称为“MatchObject”:

>>> re.search ("a", "a")
<_sre.SRE_Match object at 0x100427a58>

但是,我无法访问此对象:

import _sre

dir (_sre)
['CODESIZE', 'MAGIC', '__doc__', '__name__', '__package__', 'compile', 'copyright', 'getcodesize', 'getlower']

>>> dir(_sre.SRE_Match)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'SRE_Match'

我错过了什么?

最佳答案

这不会发生:)

>>> import re
>>> mo = re.search ("a", "a")
>>> mo_class = type(mo)
>>> mo_class
<type '_sre.SRE_Match'>
>>> class SubClass(mo_class):
... pass
...
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: Error when calling the metaclass bases
type '_sre.SRE_Match' is not an acceptable base type

值得注意的是,您始终可以通过调用 type(obj) 来访问对象的类型。

关于python - 如何在 Python 中继承 MatchObject?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4835352/

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