the-honk/school/gcse/year 9/python challenges/13 - Replace in String.py

5 lines
232 B
Python
Raw Normal View History

2021-05-28 20:38:55 +00:00
sentence = str(input('Please input a sentence.'))
wordToReplace = str(input('Please input a word to replace.'))
replaceWith = str(input('Please input a word to replace it with.'))
print(sentence.replace(wordToReplace, replaceWith))