“String to ASCII Value Python” Kod odpowiedzi

String to ASCII Value Python

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

Jak napisać postać z jej wartości ASCII w Pythonie

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

Odpowiedzi podobne do “String to ASCII Value Python”

Pytania podobne do “String to ASCII Value Python”

Więcej pokrewnych odpowiedzi na “String to ASCII Value Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu