“Entfernen Sie das Substring aus String Python” Code-Antworten

Entfernen Sie das Wort aus 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 entfernen Sie die Zeichenfolge aus der Zeichenfolge

s = 'ab12abc34ba'
print(s.replace('ab', ''))
Mysterious Mole

Löschen Sie bestimmte Zeichen aus einem String -Python

for char in line:
    if char in " ?.!/;:":
        line.replace(char,'')
Motionless Mole

Entfernen Sie das spezifische Wort mit Python aus der Zeichenfolge aus

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

Entfernen Sie das Substring aus String Python

s = "Earthworms and Python are disgusting!"
s.replace('and Python ', '')
print(s)
#Run the code
result = "Earthworms are disgusting!"
Jumpy Coder

aus der String -Python nehmen

"Str*ing With Chars I! don't want".replace('!','').replace('*','')
Exuberant Eel

Ähnliche Antworten wie “Entfernen Sie das Substring aus String Python”

Fragen ähnlich wie “Entfernen Sie das Substring aus String Python”

Weitere verwandte Antworten zu “Entfernen Sie das Substring aus String Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen