将列表中列表中的元组隐式转换为列表

时间:2018-07-21 19:37:06

标签: python

我在列表中有一个列表(里面有一个元组),格式为:

result = [([1,2,3],4),([7,8,9],10)]

我希望我的结果是[[1,2,3,4],[7,8,9,10]]。我正在使用python 2.7。有什么解决办法吗?

2 个答案:

答案 0 :(得分:2)

使用<Files admin-ajax.php> Order allow,deny Allow from all Satisfy any </Files>

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Example',
      home: Scaffold(
        appBar: PreferredSize(
          preferredSize: Size.fromHeight(50.0), // here the desired height
          child: AppBar(
            // ...
          )
        ),
        body: // ...
      )
    );
  }
}

或使用列表理解

map

答案 1 :(得分:2)

如果将HDBC-odbc中的每个元组解包成result对,则可以对每个元组执行lst, val

lst + [val]