Description de la méthode replace() python
La méthode Python string replace() renvoie une copie de la chaîne dans laquelle les occurrences de old ont été remplacées par new, limitant éventuellement le nombre de remplacements au paramètre optionnel max.
Syntaxe de la méthode replace() python
1 |
string.replace(old, new[, max]) |
Exemples d'usagde de la fonction string replace()
1 2 3 4 5 6 7 8 9 10 |
# coding: utf-8 str1 = "Python 2.7 or Python 3.9" print(str1.replace("Python" , "Java")) # affiche: "Java 2.7 or Java 3.9" str2 = "Python 2.7 or Python 3.9" print(str2.replace("Python" , "Java" , 1)) # affiche: "Java 2.7 or Python 3.9" str2 = "Python 2.7 or Python 3.9" print(str2.replace("Python" , "Java" , 2)) # affiche: "Java 2.7 or Java 3.9" |
Younes Derfoufi
CRMEF OUJDA
1 thought on “La méthode de chaine de caractères replace() en python”