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