Rejoignez des éléments dans Set avec le caractère Newline

a_list = ['a','b','c']
joined_string = "\n".join(a_list)
Lovely Lark