“Como excluir o item em string python” Respostas de código

Como excluir o item em string python

newstr = oldstr.replace("M", "")
Puzzled Pony

como remover uma corda em python

shop = ["Python", "js" , "c#"]
shop.remove("js")

for x in shop:
    print(x)
YEASIN ARAFAT

Respostas semelhantes a “Como excluir o item em string python”

Perguntas semelhantes a “Como excluir o item em string python”

Mais respostas relacionadas para “Como excluir o item em string python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código