while both of those work, there is a much quicker way to do so:
words = ['This', 'is', 'a', 'list'] separator = '-' #then, to join the words together new = separator.join(words) print(new)