Write a Python program that prompts the user to enter an upper or lower case letter and displays the corresponding ASCII value
Answers
Answered by
0
Explanation:
import string
for i in string.ascii_uppercase:
print "ASCII value of",i,"is",ord(i)
for i in string.ascii_lowercase:
print "ASCII value of",i,"is",ord(i)
Similar questions
Social Sciences,
2 months ago
English,
2 months ago
History,
4 months ago
Math,
11 months ago
English,
11 months ago