我在列表中有一个列表(里面有一个元组),格式为:
result = [([1,2,3],4),([7,8,9],10)]
我希望我的结果是[[1,2,3,4],[7,8,9,10]]
。我正在使用python 2.7。有什么解决办法吗?
答案 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]