我想在 python 中使用 xpath 。我试过了
import xml.etree.ElementTree as ET
由于这个库的使用有限,我不得不在谷歌上进行长时间的搜索后使用 lxml。我在安装过程中遇到了几个问题,最后我安装了 lxml 但是当我使用
from lxml import etree
它会抛出如下错误。你能告诉我解决这个问题的方法吗!!!
Traceback (most recent call last):
File "<pyshell#0>", line 1, in <module>
from lxml import etree
ImportError: DLL load failed: %1 is not a valid Win32 application.
谁能告诉我问题是什么?谢谢帮助!!