题解 | 单词倒排
单词倒排
https://www.nowcoder.com/practice/81544a4989df4109b33c2d65037c5836
print(" ".join(''.join(' ' if not c.isalpha() else c for c in input()).split(" ")[::-1]))
单词倒排
https://www.nowcoder.com/practice/81544a4989df4109b33c2d65037c5836
print(" ".join(''.join(' ' if not c.isalpha() else c for c in input()).split(" ")[::-1]))
相关推荐