for values. Can anyone please tell me to parse value "<" using minidom.parse in python.
<Value>"<"</Value>
</Root>
Thats not valid XML, " and < are a special characters in XML and can't be included in a document like that.
Fix your XML by escaping the " and < symbols and minidom will work as expected.
For example:
<Value>"<"</Value>
or:
<Value><![CDATA["<"]]></Value>
</ResourceRecordSets>was also missing from the 2nd to last line of your XML. Again, ensure you're working with valid XML before trying to parse.