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
|
string.replace(old, new[, max]) |
Exemples d'usagde de la fonction string replace()
|
# 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…