Comment supprimer l'élément dans String Python
newstr = oldstr.replace("M", "")
Puzzled Pony
newstr = oldstr.replace("M", "")
shop = ["Python", "js" , "c#"]
shop.remove("js")
for x in shop:
print(x)