I have a list that contains a word. Each letter is separated by a space (as seen below).
word = ["h", " ", "e", " ", "l", " ", "l", " ", "o", " "]
I am trying to get it to print in the format:
h e l l o
I tried using a print statement (among other things) but it just came out:
["h", " ", "e", " ", "l", " ", "l", " ", "o", " "]
How do I fix this?