我遇到了这样的 Xpath:
from xml.etree import ElementTree
with open('podcasts.opml', 'rt') as f:
tree = ElementTree.parse(f)
for node in tree.findall('.//outline'):
pass
我知道那是什么//意思any matches,但是.之前的//意思是什么?那是什么意思relative path?但是current path代码中的内容是什么?是根路径吗?那么它可以写成///outline吗?