欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Python基于数列实现购物车程序过程详解

程序员文章站 2023-11-09 18:53:10
要求1、启动程序后让用户输入余额,并打印商品列表2、用户通过输入编号购买商品3、用户选择商品购买后,根据余额判断成功或者失败,给出对应提示4、可以随时退出,退出后打印账号余额以及购买的商品列表构思1、...

要求

1、启动程序后让用户输入余额,并打印商品列表

2、用户通过输入编号购买商品

3、用户选择商品购买后,根据余额判断成功或者失败,给出对应提示

4、可以随时退出,退出后打印账号余额以及购买的商品列表

构思

1、首先,用户余额需要进行存储,用户购买的物品需要进行存储在数组中

2、用户购买成功后,将购买的物品放入物品集合,并用总金额减去余额

3、如果失败,给出失败提示,并打印余额

4、用户选择继续后,无论成功失败,都可以继续购买

代码

# 用户输入工资
balance = int(input("please input balance:"))
# 定义衣服的数组
clothes = [["pants",100],["t-shirt",50],["skirt",20]]
# 个人所得,包括金钱和获取的物品
havegoods = [balance,[]]
flag = true
while flag:
  # 打印衣服列表
  print("the clothes list is as follows")
  print("______clotheslist______")
  i = 1;
  for c in clothes:
    print('the number:',i,":",c)
    i += 1

  # 用户输入商品编号
  code = int(input("please choose the number:"))
  # 判断钱是否够用
  if clothes[code-1][1] <= havegoods[0]:
    # 在自己的购物清单中加入已购物品
    havegoods[1].append(clothes[code-1])
    # 减去花费的金钱
    havegoods[0] -= clothes[code-1][1]
    print("you have successfully purchased!")
    print("your account balance is:",havegoods[0])
  else:
    print("your account balance is insufficient!")
    print("your account balance is:",havegoods[0])
  judge = input("you can press any button to continue,or input 'n' to leave:")
  if judge == "n":
    flag = false
print("your account balance is:",havegoods[0])
print("your shopping list is as follows:")
print("______clotheslist______")
for h in havegoods[1]:
  print(h)

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。