Answers for "generate ascii in python"

7

string to ascii value python

>>> s = 'hi'
>>> [ord(c) for c in s]
[104, 105]
Posted by: Guest on June-20-2020
22

python ascii

>>> ord('a')
97
>>> chr(97)
'a'
>>> chr(ord('a') + 3)
'd'
>>>
Posted by: Guest on May-19-2020
2

write a program to find ascii value of a character in python

# Program to find the ASCII value of the given character

c = 'p'
print("The ASCII value of '" + c + "' is", ord(c))
Posted by: Guest on April-06-2021

Python Answers by Framework

Browse Popular Code Answers by Language