''' Purpose: consider a function side-effect in Python ''' import date nbrs = [ 3, 1, 4 ] # if we pass list into a function that deals with changing things in a list # the list nbrs will be updated! date.f( nbrs ) # run and find out! print( nbrs )