题解 | #单词倒排#

单词倒排

http://www.nowcoder.com/practice/81544a4989df4109b33c2d65037c5836

正则表达式轻松通过

import re
tj = re.compile("\W+")
in_put = input()
word_list = tj.split(in_put)
try:
    word_list.remove("")
except Exception:
    pass
out_put = ''
N = len(word_list)
for i in range(N):
    out_put += (word_list[(N- 1 - i)] + " ")
print(out_put)
全部评论

相关推荐

joe2333:怀念以前大家拿华为当保底的日子
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务