import re def remove_numbers(text): return re.sub(r'\d+', '', text)