l = ['hello', 'geek', 'have', 'a', '1', 'day'] # this will join all the # elements of the list with ' ' l = ' '.join(l) print(l)