Write a Program To Print ASCII Value Of A Character In Python
Answers
Answered by
1
Answer:
will use the ord() function
Explanation:
a = 'p'
print("The ASCII value of '" + a + "' is", ord(a))
Similar questions