在Python中重塑不规则列表
我想
wide_list = [[1,['a','b','c']],[2,['d','e']],[3,'f']]
以“长格式”重塑以下列表:
long_list = [[1,'a'],[1,'b'],[1,'c'],[2,'d'],[2,'e'],[3,'f']]
如何在Python中有效地实现这一点?
I would like to reshape the following list :
wide_list = [[1,['a','b','c']],[2,['d','e']],[3,'f']]
in a "long format":
long_list = [[1,'a'],[1,'b'],[1,'c'],[2,'d'],[2,'e'],[3,'f']]
How can this be achieved efficiently in Python?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试嵌套列表理解:
请注意,必须更改最后一组以匹配前两组的模式。使用
[3, ['f']]
代替[3, 'f']
。否则,您将需要针对不遵循该模式的组的特殊情况逻辑。Try a nested list comprehension:
Note, the last group had to be changed to match the pattern of the first two groups. Instead of
[3, 'f']
, use[3, ['f']]
instead. Otherwise, you'll need special case logic for groups that don't follow the pattern.实现此目的的一种方法是使用列表理解:
One way this can be done is using a list comprehension:
使用 列表推导式,
但是 这个答案可能是最清楚的。
Using list comprehensions,
However, this answer is probably the most clear.