''' Purpose: introduce numeric lists ''' # get a list of numbers reply = input( 'Enter a list of numbers: ' ) slist = reply.split() print( 'reply =', reply ) print( 'slist =', slist ) # convert numeric text into numbers one by one nlist = ... ... print( 'nlist =', nlist )