Mar-11-2018, 09:13 PM
Create the following function near top of program:
def has_digits(word): return any(character.isdigit() for character in word)test:
Output:>>> has_digits('blinky')
False
>>> has_digits('bli2nky')
True
>>> has_digits('123')
True
>>>