the-honk/gcse computer science/year 9/python challenges/13 - Replace in String.py
2024-10-09 18:02:34 +01:00

5 lines
No EOL
232 B
Python

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))