Instagram
youtube
Facebook
Twitter

Check if a Given Character is a Digit

A Python program to determine whether a given character is a digit using simple string comparison.

Explanation:

  1. Function check_digit(char)
     
    • Uses .isdigit() method to check if the input is a digit.
       
    • Returns "Digit" if true, otherwise "Not a Digit".
       
  2. User Input (char = input("Enter a character: "))
     
    • Takes a single character input from the user.
       
  3. Function Call (print(check_digit(char)))
     
    • Calls the function and prints the result.

 

Program:

def check_digit(char):

    if char in "1234567890":

        return "Digit"

    else:

        return "Not a Digit"

char = input("Enter a character: ")

print(check_digit(char))