while True:     text_in  = raw_input("Enter a string.\n>> ")     text_out = ""         if text_in == "":         break         for i in text_in:         if (i != " "):             text_out += ">>>/" + i + "/\n"           else:             text_out += "\n"         print text_out