Is it possible to pass the text attribute of an subelement in the constructor? I'll describe. I want to join the second and third lines to one line:
import xml.etree.ElementTree as ET
son = ET.SubElement(parent, tagName)
son.text = 'some string'
Thanks in advance