SyntaxFix
Write A Post
Hire A Developer
Questions
Joining elements in a list space separated:
word = ["test", "crust", "must", "fest"] word.reverse() joined_string = "" for w in word: joined_string = w + joined_string + " " print(joined_string.rstrim())