按照規則,分別得到兩個List[Tuple]],然後合並。
A = [...]
B = [...]
def b _ in _ a(b:tuple)-& gt;布爾:
...""" "判斷子項B是否可以對應A中的某項" " "
....為了入夥?答:
........如果a[0]==b[0]並且?a[1]。startswith(b[1]):
............返回True
....返回False
def gen _ item(a:tuple)-& gt;元組:
..." ""生成輸出項" " "
....為了b in?乙:
........如果b_in_a:
............返回b + (1,)
....返回壹個[:2] + (0,)
def get _ excess()-& gt;列表:
..." ""獲取B中不能對應A的所有項目" " "
....返回列表(map(lambda _: _ + (0,),filter(lambda _:!b_in_a(_),B)))
lst_out = list(map(gen_item,A)) + get_excess()
打印(lst_out)