Title: [Python] newmeme Author: Anonymous Pastebin link: http://pastebin.com/v6aC82By First Edit: Monday 20th of October 2014 04:12:56 PM CDT Last Edit: Monday 20th of October 2014 04:12:56 PM CDT 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