我有这个基本代码,我只是想将第一个列表(list1)中的每个元组与第二个列表(列表2)中的相应元组进行比较。如果列表 2 中的元组 = 对应于 list1 中的元组减去 the ,'.vbproj'
则获取两个元组并返回它们。
然后我需要打印路径 + 来自 list2 的元组 + 来自 list1 的元组。我只是坚持如何做到这一点。
path = "C:\Users\bg\Documents\Brent"
list1 = [ 'Brent.vbproj', 'Chris.vbproj', 'Nate.vbproj']
list2 = ['Brent', 'Chris', 'Nate']
def connect(list1, list2):
for x, y in zip(string[0], string2[0]):
if string(x) is string2(y):
print x
os.path.join(path, x, y)
x = connect(list1, list2)
y = connect(list1, list2)
我认为将zip()
两个元组比较到最小等价,但我可能是错的??我不知道,任何帮助将不胜感激。提前致谢!