• 大小: 1.40KB
    文件类型: .py
    金币: 1
    下载: 0 次
    发布日期: 2021-01-30
  • 语言: Python
  • 标签: 购物车  购物  程序  

资源简介

实现购物车功能例子

资源截图

代码片段和文件信息

__author__ = “Alex Li“


product_list = [
    (‘Iphone‘5800)
    (‘Mac Pro‘9800)
    (‘Bike‘800)
    (‘Watch‘10600)
    (‘Coffee‘31)
    (‘Alex Python‘120)
]
shopping_list = []
salary = input(“Input your salary:“)
if salary.isdigit():
    salary = int(salary)
    while True:
        for indexitem in enumerate(product_list):
            #print(product_list.index(item)item)
            print(indexitem)
        user_choice = input(“选择要买嘛?>>>:“)
        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]
               

评论

共有 条评论