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