zoukankan      html  css  js  c++  java
  • 13 购物车之二(用字典)

    asset_all = eval(input("请输入总资产:"))
    car_dict = {}
    # dict_list = {
    #     "电脑":{"single_price":"单价","num":"个数"}
    #
    # }
    goods = [
        {"name":"电脑","price": 1999},
        {"name":"鼠标","price": 10},
        {"name":"游艇","price": 20},
        {"name":"美女","price": 998},
        ]
    for i in goods:
        print(i['name'],i['price'])
    while True:
        i2 = input("请输入商品(y/Y结算):")
        if i2.lower() == 'y':
            break
        for item in goods:
            if item['name'] == i2:
                name = item['name']
                if name in car_dict.keys():
                    car_dict[name]["num"] += 1
                else:
                    car_dict[name] = {"single_price": item["price"], "num": 1}
    print(car_dict)
    sum_all = 0
    for k,v in car_dict.items():
        print(k,v)
        n = v['single_price']
        m = v['num']
        sum_all += m*n
    print(sum_all)
    if asset_all < sum_all:
        print("余额不足")
    else:
        print("购买成功")

  • 相关阅读:
    event的属性
    dom三个事件
    setInterval和setTimeout定时器
    eclipse编码格式设置
    eclipse Subversion Native Library Not Available
    NET Framework V4.0.30319
    eclipse配置tomcat
    eclipse Multiple annotations found at this line
    eclipse安装svn插件
    eclipse安装maven
  • 原文地址:https://www.cnblogs.com/wssaried/p/9862697.html
Copyright © 2011-2022 走看看