IDcheck = input("Enter The Customer ID ")
if IDcheck.isdigit :
print("Your ID is Being Searched")
elif IDcheck.isalpha :
print("IDs Only Contains Numbers")
I made a code to search customers names by ID . typed isdigit function to make sure the user enters a number but when I type a letter, it does accept it. why