當前位置:成語大全網 - 書法字典 - Python的列表包含元組。如何修改tuple中的元素?

Python的列表包含元組。如何修改tuple中的元素?

元組也是壹樣。應該將生成的新元組項目添加到要輸出的列表中。

按照規則,分別得到兩個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)