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
Acheter sur Très Facile !
-

Routeur ZYXEL puissant - SOHO NBG7510 AX1800 WiFi 6 Router
€ 26,00 Acheter le produit -

Python pour les Nuls, 4è édition - John Paul Mueller
€ 25,00 Acheter le livre -

Tenda Routeur WiFi 6 RX12 Pro, Router Tenda WiFi AX3000 Bi-Bande, 5 * 6dBi Antennes à Haut Puissance, Large Couverture,
€ 57,00 Acheter le produit
1 thought on “La méthode de chaine de caractères replace() en python”