Computer Science

Choose the correct function to get the ASCII code of a character.

  1. char('char')
  2. ord('char')
  3. ascii('char')
  4. All of these

Python String Manipulation

21 Likes

Answer

ord('char')

Answered By

3 Likes


Related Questions