8.6k views
4 votes
Ask the user to input a character and print on the next line, "digit". if it is a digit otherwise print "not a digit". an initial code is already provided in the code editor. just fill in the missing code. sample output enter a character: 4 digit

1 Answer

5 votes

Final answer:

To determine if a character is a digit or not in Python, you can use the isdigit() function.

Step-by-step explanation:

The code provided in the code editor allows the user to input a character, and the objective is to determine whether the character is a digit or not.

To accomplish this, you can use the isdigit() function in Python. This function returns True if the given character is a digit, otherwise it returns False.

Here's the missing code:

character = input("Enter a character: ")
if character.isdigit():
print("digit")
else:
print("not a digit")

User GrovesNL
by
7.1k points