import re o = [] # 保存字母 d = [] # 保存非字母字符的值和索引 a = input() for i,w in enumerate(a): if not re.findall('[A-Za-z]',w) or w == ' ': &...