y its not printing
>>> list_1 = ['sugar', 'pepper', 'vegitables', 'fruits', 'groccery'] >>> list_2 = ['furniture', 'books', 'computers'] >>>Final_list = [list_1 + list_2] >>> list_1.append('butter') >>> list_1.append('icecream') >>> list_1.append('wweshow') >>> print(Final_list) [['sugar', 'pepper', 'vegitables', 'fruits', 'groccery', 'furniture', 'books', 'computers']] y its not printing "wweshow"? but when i do this >>> print (list_1) ['sugar', 'pepper', 'vegitables', 'fruits', 'groccery', 'butter', 'icecream', 'wweshow'] it prints out"wweshow" second thing del list_1[1] >>> print (Final_list) ['sugar', 'pepper', 'vegitables', 'fruits', 'groccery', 'butter', 'icecream', 'wweshow', 'furniture', 'books', 'computers'] its(pepper) not deleted, y? but when i do this >>> print (list_1) ['sugar', 'vegitables', 'fruits', 'groccery', 'butter', 'icecream', 'wweshow'] u see, "pepper" is gone what's happening here