Description de la méthode expandtabs()
La méthode expandtabs() renvoie une copie de la chaîne avec tous les caractères de tabulation '\t' remplacés par des caractères d'espacement un nombre de fois égale au paramètre tabsize choisi en options.
Syntaxe de la méthode expandtabs()
1 2 3 4 5 6 |
# expandtabs() par defaut string.expandtabs() # expandtabs() avec option string.expandtabs(tabsize = valeur) # ou simplement string.expandtabs(valeur) |
Exemple
1 2 3 4 5 6 7 8 9 10 11 12 13 |
# coding: utf-8 # expand défault tab str1 = "Python\tProgramming" # affiche: Python Programming print(str1) # expand défault tab str2 = "Python\tProgramming" # affiche: Python Programming print(str2.expandtabs()) # expand custom tab str3 = "Python\tProgramming" print(str3.expandtabs(12)) # affiche: Python Programming print(str3.expandtabs(18)) # affiche: Python Programming |
Younes Derfoufi
CRMEF OUJDA
Acheter sur Très Facile !
-
Python pour le Data Scientist - 2e éd- Machine Learning
€ 29,00 Acheter le livre -
ACOCOBUY Organisateur d'Accessoires - Étui pour Disque Dur Externe 2,5
€ 11,00 Acheter le produit -
Tenda Routeur WiFi 6 RX12 Pro, Router Tenda WiFi AX3000 Bi-Bande, 5 * 6dBi Antennes à Haut Puissance, Large Couverture,
€ 57,00 Acheter le livre
1 thought on “La méthode de chaine de caractères expandtabs() Python”