La fonction chr() convertit un entier en son caractère unicode et le renvoie. Par exemple, chr(97) renvoie la chaîne 'a' et chr(65) renvoie le caractère 'A'.
Exemple 1
1 2 |
print(chr(66)) # affiche: 'B' print(chr(98)) # affiche: 'b' |
Exemple (obtenir la liste des caractères de 'a' à 'z')
1 2 3 4 5 6 7 |
list_characters = [chr(i) for i in range(97 , 123)] print (list_characters) """affiche: ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']""" |
Younes Derfoufi
CRMEF OUJDA
1 thought on “Fonction Python chr()”