prodcut_list=[ ('Iphone', 5800), ('Mac Pro', 9800), ('Bike', 800), ('Watch', 10600), ('Coffee', 31), ('Python Book', 49) ] shopping_list=[] salary=int(input('Input your salary:')) while True: for index,item in enumerate(prodcut_list): print(index,ite…