标签: python regex string
我在Python shell中键入以下行:
In [67]: print(re.match(r"\d", "\\ddfss")) None
因为" \ d"是一个原始字符串,我希望re.match将返回字符串" \ ddfss"的匹配对象。你知道它为什么不发生吗?