C. Programming language: Python Share code and screenshot Write a python Program that will include the following: • It will read from the user (with the Input method) a string. The user will be able to enter whatever text he wants. • You should then read the string character by character and do the following If the character is any Latin character (lowercase or uppercase A-Z, a-z) you will print "READING ALPHABETIC CHARACTER *", where * is the character you read If the character is a number you will print "READING DIGIT *", where * is the digit read If the character is any other punctuation mark (or the space), you will print "READING SIMPLE CHARACTER *", where * is the character read • For prints please use f-string
C.
Share code and screenshot
Write a python Program that will include the following:
• It will read from the user (with the Input method) a string. The user will be able to enter whatever text he wants.
• You should then read the string character by character and do the following
If the character is any Latin character (lowercase or uppercase A-Z, a-z) you will print "READING ALPHABETIC CHARACTER *", where * is the character you read
If the character is a number you will print "READING DIGIT *", where * is the digit read
If the character is any other punctuation mark (or the space), you will print "READING SIMPLE CHARACTER *", where * is the character read
• For prints please use f-string
Step by step
Solved in 4 steps with 2 images