Search code examples
pythonintegerchartype-conversion

How can I convert a character to a integer in Python, and viceversa?


I want to get, given a character, its ASCII value.

For example, for the character a, I want to get 97, and vice versa.


Solution

  • Use chr() and ord():

    >>> chr(97)
    'a'
    >>> ord('a')
    97