'How to parse multiline child tag from XML

I try to parse an external XML in Python. There is Text tag (I changed the text here for clarification purposes) which suggests to be of multiple lines if the Multiline tag is greater than 0. I assume this as I have 25,000 Tags and can see that some end mid sentence. Every time they do the multiline tag is greater than zero. My question is now: how do I parse this as atm I will only see the text in the Text tag and not the other lines

<TAG>
<Surogat>253</Surogat>
<Number>3</Number>
<Date>20.02.2013</Date >
<Time>12:30</Time >
<Text>just for display purposes. The address of the place is: Merto</Text>
<Multiline>1</Multiline>
<Status>0</Status>
</TAG>

Im using:

for child in root.iter():
    print(child.tag, child.text.strip())

Which returns

Text just for display purposes. The address of the place is: Merto
Multiline 1


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source