#Test any number of arg pass (As a tuple) def iaccept(*many): print(many) iaccept() iaccept("Test") iaccept("Test", 1, 2)