1

How can I get the character's ASCII value without using any library function using python.

Jay Shukla
  • 11
  • 1

1 Answers1

0

You can use the function ord(), if that what you mean:

ord('A')

will give you 65

Azarkuz
  • 37
  • 7