Python Regex Hapus digit dari string

# credit to the Stack Overflow user in the source link
# add a space before \d+ to exclude numbers close to letters, as b3 for example

s = "This must not be deleted, but the number at the end yes 134411"
s = re.sub("\d+", "", s)
wolf-like_hunter