#!/usr/bin/env python # Ivan Novick # Demonstrate a function which aggregates remaining parameters # into a tuple def dostuff(param1, *param2): print param1 print param2 dostuff('apples', 'bananas', 'cherry', 'dates')