''' Purpose: convert an input list of integers into an integer list ''' # get input reply = input( 'Enter integers: ' ) print() # split reply into list of numeric strings nbr_strings = reply.split() # see what we got print( 'nbr_strings:', nbr_strings ) print() # convert numeric text into list of numbers # set up the accumulator to prepare for adding elements numbers = ... # process the strings of nbr_strings one-by-one for ns in nbr_strings : # process the current numeric string # get numeric equivalent of ns nbr = ... # add equivalent to list of numbers ... # print the updated list of numbers print( 'numbers:', numbers )