Fix XMLData attribute error in Document Parsing notebook

This commit is contained in:
KaifAhmad1
2025-12-14 20:37:07 +05:30
parent 2f9ad467f0
commit f15ab2a327
@@ -172,7 +172,7 @@
"\n",
"xml_data = xml_parser.parse(xml_file)\n",
"\n",
"print(f\"Parsed XML with {len(xml_data.elements)} elements\")\n",
"print(f\"Parsed XML with {len(xml_data.root.children)} elements\")\n",
"print(f\"Root element: {xml_data.root.tag if xml_data.root else 'None'}\")\n"
]
},