Efficient way to add spaces between characters in a string

s = "BINGO"
print(" ".join(s))

Should do it.

Leave a Comment