''' Purpose: exercise hmmm2 functions ''' import hmmm2 # set up x1 = [ 3, -1, 4, -1, -5, 9 ] x2 = [ 3, -1, 4, -1, -5, 9 ] print() # try functions g() and h() hmmm2.g( x1 ) print( 'x1 after g():', x1 ) print() hmmm2.h( x2 ) print( 'x2 after h():', x2 )