ascii value of alphabets in python code example
Example 1: how to write the character from its ascii value in python
c='p'
x=ord(c)
chr(x)
Example 2: convert characters in ascii in python
c = 'A'
print("The ASCII value of '" + c + "' is", ord(c))
Example 3: ascii values in python of
c = 'p'
print("The ASCII value of '" + c + "' is", ord(c))
Example 4: character to ascii python
asciiValue=ord(stringCharacter)
asciiValue=ord('A')
Example 5: how to print alphabets using ascii value in python
>>> ord('a')