题解 | #单词倒排#

单词倒排

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))

全部评论

相关推荐

把球:这个听过,你加了就会发现是字节的hr
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务