我有一个xml文件,结构如下:
<mc:AlternateContent xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006">
<mc:Choice xmlns:a14="http://schemas.microsoft.com/office/drawing/2010/main" Requires="a14">
....
我已使用以下方式注册了 Choice 命名空间:
ET.register_namespace("a14", "http://schemas.microsoft.com/office/drawing/2010/main")
我还检查了ElementTree的命名空间映射以确保它已注册(它是),但我仍然无法访问Choice标记。有什么想法吗?