string_holder = "" string_list = ( "h", "e", "l", "l" ,"o" ) string_holder.join(string_list) print(string_holder) #output # hello