I made this to reverse a word but am unable to plzz help.
while True:
    word = input("Normal Word: ")
    newWord = ""
    for i in range(len(word)):
        newWord += word[len(word)-(i+1)]
    print("Reversed Word: '" + newWord() + "'\n")
The error says "TypeError: 'str' object is not callable"
 
    