52.py 1 2 3 4 5sentence = input("Enter A Sentence : ") old_word = input("Enter Word To Replace : ") new_word = input("Enter New Word : ") print(sentence.replace(old_word, new_word))