''' Purpose: demonstrate optional parameters ''' def chant( msg='Wahoo Wah', n=3 ) : ''' Prints string parameter msg, n times ''' for i in range( 0, n ) : print( msg ) return