Nope, because it would be ambiguous to determine where the first tuple ends and the second tuple begins.
There are two work-arounds:
You can just take in two tuples directly:
def fun(tulpe1, tuple2):
# compare tuple1 to tuple2
Alternatively, you can take in multiple tuples as kwargs:
def fun(**tuples):
# for tuple in tuples:
# do some stuff
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…