import re
s = "hello world123"
print(re.findall(r'[^\W\d_]+|\d+', s))