一行把tuple转换为list 发表于 2017-09-06 分类于 python In [16]: tup = ((1, 2, 3), (4, 5, 6)) In [17]: list(map(list,tup)) Out[17]: [[1, 2, 3], [4, 5, 6]]