“String to ASCII Value Python” Réponses codées

String to ASCII Value Python

>>> s = 'hi'
>>> [ord(c) for c in s]
[104, 105]
Obedient Ox

Comment écrire le personnage à partir de sa valeur ASCII à Python

c='p'
x=ord(c)
#it will give you the ASCII value stored in x
chr(x)
#it will return back the character

Réponses similaires à “String to ASCII Value Python”

Questions similaires à “String to ASCII Value Python”

Plus de réponses similaires à “String to ASCII Value Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code