Run
items = ["apple", "banana", "cherry"] output = ",".join(map(str, items)) print(output)
Output