CODE

#REVERSED STRING.PY BY GEORGE SKOUROUPATHIS
word = ""
while word != "exit":
    word = raw_input("Type your word. (type 'exit' to quit the program): ")
    if word == "exit":
        print "Goodbye user..."
        print ""
        print "Coding by George Skouroupathis"
        testword = raw_input("(Press Enter to Quit)")
    else:
        index = 1
        re_word = []
        reversed1 = ""
        for letter in word:
            re_word.append(letter)
        for letter in word:
            re_word[len(word)-index] = letter
            index += 1
        i2 = 1
        while i2 <= len(re_word):
            reversed1 += re_word[i2-1]
            i2 += 1
        print reversed1