在Python3.X 中,如何快速的把下面這個(gè)listA 轉(zhuǎn)成 listBlistA = [[6], [8], [10], [14], [18]]listB = [6, 8, 10, 14, 18]
1 回答

阿波羅的戰(zhàn)車(chē)
TA貢獻(xiàn)1862條經(jīng)驗(yàn) 獲得超6個(gè)贊
listA = [[6], [8], [10], [14], [18]] listB = list([x[0] for x in listA])print(listB)
添加回答
舉報(bào)
0/150
提交
取消