Computer Science, asked by tinutilu5867, 7 months ago

Write a Program To Print ASCII Value Of A Character In Python

Answers

Answered by mohammads
1

Answer:

will use the ord() function

Explanation:

a = 'p'

print("The ASCII value of '" + a + "' is", ord(a))

Similar questions