#coding = utf-8 #2016-11-19#我的工资是存在文件中的,执行后会判断是否存过工资,如果存过无需输入,直接购物,没存过需要输入工资#wages.txt是存工资的文件 import os product_list = [ ['iphone6', 5888], ['联想笔记本', 8000], ['iphone7', 6888], ] shop_car = [] if os.path.getsize ('wages.txt'): # 判断是否写入工资 money = open…