I have following list in Python:
list = ["one", "two", "three", "four", "five"]
and would like to convert it to following string:
<field>one</field><field>two</field><field>three</field><field>four/field><field>five</field>
what is the most efficient way?