Python road 02- cart

demand:

  1. After starting the program that allows the user to enter wages, and then print the Product List
  2. Allow users to purchase by product number
  3. After the user selects a product, testing the balance is enough, enough to direct debit, is not enough to remind 
  4. Can withdraw at any time, when you exit, print the purchase of goods and balances
# -*- coding:utf-8 -*-

product_list = [
    ('Iphone',5800),
    ('Mac Pro', 12000),
    ('Bike',800),
    ('Watch',15000),
    ('Coffer',46),
    ('Book',70)
]
shopping_list = []
salary = raw_input("Please input your salary:")
if salary.isdigit():
    salary = int(salary)
    while True:
        for index,item in enumerate(product_list):
            print(index,item)
        user_choice = raw_input("Please choice wath do you want to buy:")
        if user_choice.isdigit():
            user_choice = int(user_choice)
            if user_choice < len(product_list) and user_choice >= 0:
                p_item = product_list[user_choice]
                if p_item[1] <= salary: #买得起
                    shopping_list.append(p_item)
                    salary -= p_item[1]
                    print("Added [%s] into shopping cart,your current balance is \033[31;1m%s\033[0m" % (p_item,salary))
                else:
                    print("\033[41;1m you have no more money!! \033[0m")
                    exit()
            else:
                print("product code [%s] is no exist!!" % user_choice)
        elif user_choice == 'q':
            print("##########shopping list###########")
            for p in shopping_list:
                print(p)
            print("Your current balance:",salary)
            exit()
        else:
            print("invalid option")

 

Guess you like

Origin www.cnblogs.com/hulk-1029/p/10953942.html