软件有注册,登录模块,用户先注册为会员,登录进入系统进行商品购买,系统能自动计算所购买的商品名称、数量、单价和总价,当该会员历史上购买的商品金额累积到达一定金额后,普通会员可升级VIP会员,VIP会员享受购买商品的优惠价为9折。系统可为用户提供购物车、订单记录和留言板等功能,也可为超市管理员增加数据库和数据分析的功能,比如所有用户的每个订单消费信息记录在数据库中,超市管理员可以追溯查询,系统可统计出超市每个时段的消费数据或每天的消费数据,并用直方图或折线图或饼图直观地表达出来
这个需要打包吧,代码多
你小子不好好写作业,怎么来找人代做拉,告诉我你名字。
不知道你这个问题是否已经解决, 如果还没有解决的话:glossary = {
'string': 'A series of characters.',
'comment': 'A note in a program that the Python interpreter ignores.',
'list': 'A collection of items in a particular order.',
'loop': 'Work through a collection of items, one at a time.',
'dictionary': "A collection of key-value pairs.",
}
word = 'string'
print("\n" + word.title() + ": " + glossary[word])
word = 'comment'
print("\n" + word.title() + ": " + glossary[word])
word = 'list'
print("\n" + word.title() + ": " + glossary[word])
word = 'loop'
print("\n" + word.title() + ": " + glossary[word])
word = 'dictionary'
print("\n" + word.title() + ": " + glossary[word])