''' Support your understanding of lists list building ''' # get some lists print() # create and add to values values = [ ] values.append( "u" ) values.append( "v" ) values.append( "a" ) values.append( "!" ) values.append( " " ) values.append( "u" ) values.append( "v" ) values.append( "a" ) values.append( "!" ) print( "values =", values ) input() # create and add to ints ints = [] for i in range( 0, 10 ) : ints.append( i ) #apend adds items to a list! This will add values from 0-9 (first index at 0), #and it will put them in a list print( "ints =", ints ) ''' Extra notes: You can have lists of lists [[123], "liming", "on the sidewalks"] Hi, Don't write this: list = list.append(x). Lists are MUTABLE!!! IF YOU DON'T know what the heck that means, go to office hours or use Google. This will come up again. '''