题解 | #单词倒排#

单词倒排

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

继续使用string模块,判断字符位置上的字符是否是字母,如果不是则全部替换为‘ ’,随后对字符串分割并进行反转,即可得到正确答案

import string
data = input()
for x in data:
    if x not in string.ascii_letters:
        data = data.replace(x, ' ')
for x in reversed(data.split()):
    print(x, end=' ')
全部评论

相关推荐

牛客963010790号:为什么还要收藏
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务