赞
踩
list = ['河南郑州男孩儿', '护送了', '怀孕妈妈', '河南郑州男孩儿护送了怀孕妈妈视频', '感动', '全国网友'] a=list[:] for i in list: for j in a: if len(j) < len(i) and j in i: a.remove(j) if len(j) > len(i) and i in j: # if(a.find(i)!=-1): a.remove(a[a.index(i)]) else: pass print(a)
#输出结果:['河南郑州男孩儿护送了怀孕妈妈视频', '感动', '全国网友']
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。