product = [ banana , orange , apple ] price = [ 60 , 100 , 80 ] Product_price_zip = zip ( product , price ) Product_price_list = list ( Product_price_zip ) print ( Product_price_list ) Product_price_dict = dict ( Product_price_zip ) print ( Product_price_dict )
product = [ "banana" , "orange" , "apple" ] price = [ 60 , 100 , 80 ] Product_price_zip = zip ( product , price ) Product_price_list = list ( Product_price_zip ) print ( Product_price_list ) Product_price_dict = dict ( Product_price_zip ) print ( Product_price_dict )
product = [banana, orange, apple]
banana
orange
apple