python:怎样合并文档中有重复部分的行
发布网友
发布时间:2022-05-08 00:11
我来回答
共3个回答
热心网友
时间:2022-04-18 18:07
按行读取,放到list里面,然后set一下去掉重复
热心网友
时间:2022-04-18 19:25
菜单栏:插入——文件,OK
热心网友
时间:2022-04-18 20:59
f = open("test.txt", "r")
f_new = open("test1.txt", "w")
f_list = list()
for c in f.readlines():
f_list.append(c)
f_set = set(f_list)
f_new_list = list(f_set)
f_new.writelines(f_new_list)
f_new.close()
f.close()