''' Purpose: consider a function side-effect in Python ''' import date nbrs = [ 3, 1, 4 ] print( "argument id:", id( nbrs ) ) # the id() function returns the location in memory where a variable is stored date.f( nbrs ) print( nbrs )