本文实例为大家分享了python超市商品销售管理系统的具体代码,供大家参考,具体内容如下
class Goods(object): def __init__(self, id, name, price): self.id = id self.name = name self.price = price def __str__(self): info = "编号:%s\t商品名称:%s\t\t价格:%d" % (self.id, self.name, self.price) return info class ShopManager(object): def __init__(self, path): # path:表示读取文件的路径 shopdic:表示存放内存的容器 self.path = path self.shopdic = self.readFileToDic() def readFileToDic(self): # 读取文件,写入到字典中 f = open(self.path, 'r', encoding='utf-8') clist = f.readlines() f.close() index = 0 shopdic = {} while index < len(clist): # 将每一行的字符串进行分割,存放到新的列表中 ctlist = clist[index].replace('\n', "").split("|") # 将每行的内容存放到一个对象中 good = Goods(ctlist[0], ctlist[1], int(ctlist[2])) # 将对向存放到集合中 shopdic[good.id] = good index = index + 1 return shopdic def writeContentFile(self): # 将内存当中的信息写入到文件当中 str1 = '' for key in self.shopdic.keys(): good = self.shopdic[key] ele = good.id + "|" + good.name + "|" + str(good.price) + "\n" str1 = str1 + ele f = open(self.path, 'w', encoding='utf-8') f.write(str1) f.close() def addGoods(self): # 添加商品的方法 id = input("请输入添加商品编号:>") if self.shopdic.get(id): print("商品编号已存在,请重新选择!") return name = input("请输入添加商品名称:>") price = int(input("请输入添加商品价格:>")) good = Goods(id, name, price) self.shopdic[id] = good print("添加成功!") def deleteGoods(self): # 删除商品的方法 id = input("请输入删除商品编号:>") if self.shopdic.get(id): del self.shopdic[id] print("删除成功!") else: print("商品编号不存在!") def showGoods(self): # 展示所有商品信息 print("=" * 40) for key in self.shopdic.keys(): good = self.shopdic[key] print(good) print("=" * 40) def adminWork(self): info = """ ==========欢迎进入好海哦购物商场========== 输入功能编号,您可以选择以下功能: 输入“1”:显示商品的信息 输入“2”:添加商品的信息 输入“3”:删除商品的信息 输入“4”:退出系统功能 ========================================== """ print(info) while True: code = input("请输入功能编号:>") if code == "1": self.showGoods() elif code == "2": self.addGoods() elif code == "3": self.deleteGoods() elif code == "4": print("感谢您的使用,正在退出系统!!") self.writeContentFile() break else: print("输入编号有误,请重新输入!!") def userWork(self): print(" ==============欢迎进入好海哦购物商场==============") print("您可输入编号和购买数量选购商品,输入编号为n则结账") self.showGoods() total = 0 while True: id = input("请输入购买商品编号:>") if id == "n": print("本次购买商品共消费%d元,感谢您的光临!" % (total)) break if self.shopdic.get(id): good = self.shopdic[id] num = int(input("请输入购买数量:>")) total = total + good.price * num else: print("输入商品编号有误,请核对后重新输入!") def login(self): # 登录功能 print("==========欢迎登录好海哦购物商场==========") uname = input("请输入用户名:>") password = input("请输入密码:>") if uname == "admin": if password == "123456": print("欢迎您,admin管理员") self.adminWork() else: print("管理员密码错误,登录失败!") else: print("欢迎你,%s用户" % (uname)) # 执行用户的购买功能 self.userWork() if __name__ == '__main__': shopManage = ShopManager("shop.txt") shopManage.login()
更多学习资料请关注专题《管理系统开发》。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
白云城资源网 Copyright www.dyhadc.com
暂无“python实现超市商品销售管理系统”评论...
更新日志
2025年01月08日
2025年01月08日
- 小骆驼-《草原狼2(蓝光CD)》[原抓WAV+CUE]
- 群星《欢迎来到我身边 电影原声专辑》[320K/MP3][105.02MB]
- 群星《欢迎来到我身边 电影原声专辑》[FLAC/分轨][480.9MB]
- 雷婷《梦里蓝天HQⅡ》 2023头版限量编号低速原抓[WAV+CUE][463M]
- 群星《2024好听新歌42》AI调整音效【WAV分轨】
- 王思雨-《思念陪着鸿雁飞》WAV
- 王思雨《喜马拉雅HQ》头版限量编号[WAV+CUE]
- 李健《无时无刻》[WAV+CUE][590M]
- 陈奕迅《酝酿》[WAV分轨][502M]
- 卓依婷《化蝶》2CD[WAV+CUE][1.1G]
- 群星《吉他王(黑胶CD)》[WAV+CUE]
- 齐秦《穿乐(穿越)》[WAV+CUE]
- 发烧珍品《数位CD音响测试-动向效果(九)》【WAV+CUE】
- 邝美云《邝美云精装歌集》[DSF][1.6G]
- 吕方《爱一回伤一回》[WAV+CUE][454M]