In [1]:
import re

In [4]:
my_string="He has 11 cats"
pattern=r"\d"
re.sub(pattern,'',my_string)


Out[4]:
'He has  cats'

In [7]:
# To remove even extra spaces
" ".join(re.sub(pattern,'',my_string).split())


Out[7]:
'He has cats'