我有两个清单。
一个列表仅包含代码,例如:
b3b
3cd
6f6
4d8
96b
00a
774
eb3
607
7e5
另一个列表包含带有名称的代码,例如
b3b:John
607:Eric
7e5:Jarrold
但这份名单还没有完成。
我想要什么作为输出,因为另一个不能被删除并且必须按照正确的顺序,例如
b3b:John
3cd
6f6
4d8
96b
00a
774
eb3
607:Eric
7e5:Jarrold
已经有了这段代码,但它只返回 True 或 False,但这不是我想要的。
list1 = [line.strip() for line in open('list1')]
list2 = [line.strip() for line in open('list2')]
comp = [i[:3] for i in list2]
for i in list1:
print(i, i in list2)
也许有人可以帮助我吗?