#!/usr/bin/env python3 # -*- coding: utf-8 -*- # Author;Tsukasa product_list = [ ('Iphone',5800), ('Mac Pro',9800), ('Bike',800), ('Watch',10600), ('Coffee',30), ('Tuskasa Python',20000), ] #创建一个商品列表 shopping_list = [] #创建一个购物车,空的list salary = input(…