“Удалить слово из String Python” Ответ

Удалить слово из String Python

#You can remove a word from a string using str.replace ()
myString = 'papa is a good man'
newString = myString.replace('papa', '')
>>>' is a good man'
Yvant2000

Удалить конкретное слово из строки с помощью Python

#you can use replace function to remove specific word.
>>> message = 'you can use replace function'
>>> message.replace('function', '')
>>>'you can use replace '
Ankur

Удалить слово из строки в Python

#you can use replace function to remove specific word.
message = 'you can use replace function'
message = message.replace('function', '')
print(message)
Abdelkarim Ben Mohammadi - The Cyborg

Ответы похожие на “Удалить слово из String Python”

Вопросы похожие на “Удалить слово из String Python”

Больше похожих ответов на “Удалить слово из String Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования