# example of join() function in python numList = ['1', '2', '3', '4'] separator = ', ' print(separator.join(numList))