Python 中的数组转换

在Python3.X 中,如何快速的把下面这个listA 转成 listB

listA =  [[6], [8], [10], [14], [18]]
listB = [6, 8, 10, 14, 18]


泛舟湖上清波郎朗
浏览 670回答 1
1回答

阿波罗的战车

listA = [[6], [8], [10], [14], [18]] listB = list([x[0] for x in listA])print(listB)
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python