如何在 Python 中解栈嵌套元组?

2022-01-20 00:00:00 python nested tuples

问题描述

如何转换以下元组:

来自:

(('aa', 'bb', 'cc'), 'dd')

到:

('aa', 'bb', 'cc', 'dd')


解决方案

l = (('aa', 'bb', 'cc'), 'dd')
l = l[0] + (l[1],)

这适用于您的情况,但是 John La Rooy 的解决方案更适合一般情况.

This will work for your situation, however John La Rooy's solution is better for general cases.

相关文章