I'd like to test an inputted string against certain conditions. In this instance, I want the string from the variable to contain at least one numeric character...
while any(inputted.isdigit()) == False:
print ("Inputted must contain at least one numeric character") # can't figure this one out
inputted = input("Please enter a combination: ")
An ideal input would be a string like "Boat88Sea"
Any help would be greatly appreciated!
inputted