We have requirement to write simple xml in string format from listed dictionaries
iterating through list and iterating through each dictionarie and write xml format (i.e. dict key is xml key and dict value is dict value ex:- <First_name>James</First_name> ), if the value contains dictionary again we need to loop on that value and write innter xml format string, and again if the inner value is dictionary and again a loop to write xml string...
So we may not know how many inner dictionaries comes but we need to write nested loop how that possible in python?