I want xmltodict.parse(XML)
to return "XELTA\LMOR\CCS\CIP\CIP_3_2"
. Instead xmltodict
to converts XML content to dictionary returns strings with double backslashes. XML_Input ="XELTA\LMOR\CCS\CIP\CIP_3_2"
returns = xmltodict.parse(XML_Input)
Returns = {"XELTA\LMOR\CCS\CIP\CIP_3_2"}
.
Any suggestions?