from glob import glob

xml = ""

dirs = glob("*.ogg")
for p in dirs:
    xml += f'\t<song>{p}</song>\n'

print(xml)