python删除id相同的行
PHP中文网
PHP中文网 2017-04-17 17:34:13
0
2
331

有个文件的结构如下
The Cunctator 334555717

64.38.175.xxx 334555718

The Cunctator 334555718

The Cunctator 334555720

The Cunctator 334555721

AxelBoldt 334555723

The Cunctator 334555723

对于相同的id而言,我只需要保存最后一个id的数据,请问该怎么用python处理。比如上面的结果应该为:
The Cunctator 334555717

The Cunctator 334555718

The Cunctator 334555720

The Cunctator 334555721

The Cunctator 334555723

PHP中文网
PHP中文网

认证0级讲师

全部回覆(2)
左手右手慢动作

循環,id作為字典的key,遍歷

伊谢尔伦
with open('input', 'r') as f:
    lines = reversed(filter(bool, f.readlines()))

s = set()
result = []
for line in lines:
    id = line.split()[-1]
    if id in s: continue
    result.append(line)
    s.add(id)
result.reverse()

手機碼字未測試

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板