Forum Python

Please or S’enregistrer to create posts and topics.

convertir une chaîne Python en ASCII

Quelle la fonction python qui permet de convertir une chaîne en ASCII?

La fonction ord() python est destinée à convertir chaque caractère en code ascii. Ainsi pour convertir une chaine complètement en ascii on peut utiliser le code:

mystring = "Python"
mystring_asccii = [ord(char) for char in mystring]


print(mystring_asccii)
# output : [80, 121, 116, 104, 111, 110]