标签: python regex
>>>import re >>>re.findall(r"[^>]*", "<abc>") ['<abc', '', '']
当我在Python解释器中键入上面的代码时,我得到了一个奇怪的结果。
为什么返回列表的长度为3而不是2?