''' Purpose: introduce numeric lists ''' # get a list of numbers reply = input( 'Enter a list of numbers: ' ) slist = reply.split() print() print( 'reply =', reply ) print( 'slist =', slist ) print() #### convert numeric text into numbers one by one # first set up a holder of elements nlist = [] # initialize holder to prepare for adding elements # now get conversions of the elements of slist one-by-one for s in slist : # get numeric equivalent of s nbr = int( s ) #Convert to int !!!!! # add the equivalent to the numeric list nlist.append( nbr ) #Adding it to int version of list!!!!! # print the updated list print( nlist ) ''' Important! you will be expected to convert a list of numbers as strings to a lit of integers!!! ["1","2","3"] -> [1,2,3] ALSO don't put a list in int()... Gonna be a no from me chief. Instead, you have to change individual characters in the string. This means a... FOR LOOP! '''