AttributeError: 'xml.etree.ElementTree.Element' object has no attribute 'getprevious'
时间: 2023-10-31 10:21:24 浏览: 248
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常是因为调用了Element.getprevious()方法,但是当前元素在其父级中是第一个元素,因此没有前一个元素。你可以在调用getprevious()方法前,先判断一下该元素是否有前一个元素。你可以使用Element.getparent().findall()方法获取所有同级元素,然后判断当前元素是否是第一个元素,如果是,则不要调用getprevious()方法。
阅读全文