如果我有一个函数def f(a, b, c, d)和两个元组,每个都有两个元素,有没有办法解压这些元组,以便我可以将它们的值发送给函数?
def f(a, b, c, d)
f(*tup1, *tup2)
python tuples
python ×1
tuples ×1