如何通过其功能比较正则表达式对象

时间:2018-05-09 22:19:01

标签: python

以下两个匹配十进制数的正则表达式对象在功能上是相同的:

a = re.compile(r"""\d +  # the integral part
                   \.    # the decimal point
                   \d *  # some fractional digits""", re.X)
b = re.compile(r"\d+\.\d*")

如何根据功能对它们进行比较?
在这种情况下,a == b应为True

0 个答案:

没有答案