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 !
1 thought on “La méthode de chaine de caractères expandtabs() Python”