What I want
sentence = ["This","is","a","short","sentence"]
# Desired Output
T h i s
i s
a
s h o r t
s e n t e n c e
>>>
What I tried
sentence = [row.replace(""," ") for row in sentence]
for item in sentence:
print(item)
The problem with this is that it prints a space at the beginning and end of every line but I only want a space between each letter