码迷,mamicode.com
首页 > 编程语言 > 详细

Python 过滤重复单词

时间:2014-09-24 22:05:17      阅读:473      评论:0      收藏:0      [点我收藏+]

标签:blog   for   div   sp   on   c   log   r   python   

描述:一个英文句子仅由单词、逗号、句号、空格组成。要求过滤句子中的重复单词,例如:输入where there is a will, there is a way.

输出:where there is a will way

str = raw_input("");
a = []
str = str.replace(",", "").replace(".", "")
a = str.split(" ")
b = sorted(set(a),key=a.index)
for x in b:
    if x !="":
        print x,

  

Python 过滤重复单词

标签:blog   for   div   sp   on   c   log   r   python   

原文地址:http://www.cnblogs.com/purple-blog/p/3991483.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!