【问题标题】:Python: easiest way to flatten a tupple containing another tupple from a functionPython:扁平化包含来自函数的另一个元组的元组的最简单方法
【发布时间】:2023-04-01 17:17:01
【问题描述】:

我的代码是这样的:

def f1():
    return 2, 3

def f2():
    return 1, f1()

我能做到:

a, (b, c) = f2()

我想做:

a, b, c = f2()

我能找到的所有解决方案都需要使用大量疯狂的括号/括号,或者创建一个标识函数来使用* 运算符。我只想修改 f2()。

还有更简单的吗?

【问题讨论】:

    标签:
    python
    tuples
    unpack