“Wyjmij z Python String” Kod odpowiedzi

Zdejmij znak w sznurku Python

s = 'abc12321cba'

print(s.replace('a', ''))
Disturbed Dove

Python Usuń ciąg z ciągów

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

Usuń niektóre znaki z Pythona smyczkowego

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

Usuń określone słowo z łańcucha za pomocą Pythona

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

Usuń podłoże z Python String

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

Wyjmij z Python String

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

Odpowiedzi podobne do “Wyjmij z Python String”

Pytania podobne do “Wyjmij z Python String”

Więcej pokrewnych odpowiedzi na “Wyjmij z Python String” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu