import re

string = "I love5 verye mu765ch a123...bbb"

pattern = re.compile(r'(?=\D*\d)(?=[^a-zA-Z]*[a-zA-Z]).{5,}')

interesting = [word for word in string.split() if pattern.match(word)]
print(interesting)