For example:
mytuple = ("Hello","World")
def printstuff(one,two,three):
print one,two,three
printstuff(mytuple," How are you")
This naturally crashes out with a TypeError because I'm only giving it two arguments when it expects three.
Is there a simple way of effectively 'splitting' a tuple in a tider way than expanding everything? Like:
printstuff(mytuple[0],mytuple[1]," How are you")