Answer to Question #97173 in Python for yousif

Question #97173
In the last problem, we get an error if we enter more than one character at a time. Rewrite the program so that it only calls the ord method if a single character is entered.

Sample Run

Enter a character: *
ASCII #42

Enter a character: exit
Not a character
1
Expert's answer
2019-10-23T07:43:41-0400
char = input('Enter a character:')
if len(char) != 1:
    print('Not a character')
else:
    print('ASCII #{}'.format(ord(char)))

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS