''' Demonstrate functions can be pass with function parameter ''' def analyze( x, f ) : ''' Return the result of f( x ) ''' result = f( x ) return result