题解 | #单词倒排#
单词倒排
http://www.nowcoder.com/practice/81544a4989df4109b33c2d65037c5836
s=input().strip() if s.isalpha():#纯英文 List=s.split()[::-1] print(' '.join(List)) else:#非纯英文 for i in s: if not i.isalpha(): s=s.replace(i,' ') List=s.strip().split()[::-1] print(' '.join(List))