Say I have a string s = \'BINGO\'; I want to iterate over the string to produce \'B I N G O\'.
s = \'BINGO\'
\'B I N G O\'
This is what I did:
result =
s = "BINGO" print(" ".join(s))
Should do it.