a_str = '404 not found 张三 23 深圳'
import re
a_list = a_str.split(" ") # ['404', 'not', 'found', '张三', '23', '深圳']
res = re.findall(r'\w+', a_str, re.A) # ['404', 'not', 'found', '23']
new_list = []
for i in a_list:
if i not in res:
new_list.append(i)
print(" ".join(new_list))
# 输出结果
张三 深圳
import re
a_str = '404 not found 张三 23 深圳'
a_list = re.findall(r'[\u4e00-\u9fa5]', a_str)
print(a_list)
# 输出结果
['张', '三', '深', '圳']
import re
a_str = '404 not found 张三 23 深圳'
a_list = re.findall(r'[^\x00-\xff]', a_str)
print(a_list)
# 输出结果
['张', '三', '深', '圳']