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
c='p'
x=ord(c)
#it will give you the ASCII value stored in x
chr(x)
#it will return back the character
c = 'p'
print("The ASCII value of '" + c + "' is", ord(c))