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

5 lines
232 B
Python
Raw Normal View History

2024-10-09 17:02:27 +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))