list_of_strings = ['one', 'two', 'three'] my_string = '' for word in list_of_strings: my_string += str(word) print("Final result:", my_string)