一個簡單的購物車程式

来源:http://www.cnblogs.com/zpzcy/archive/2017/10/14/7668765.html
-Advertisement-
Play Games

前幾天跟著視頻做了一個簡單的購物車程式,但是沒有做出來,之後又跟著後面的視頻,做了一個,視頻裡面老師也講了,只有不斷的嘗試寫,才能慢慢有感覺,越不寫,越不會。下麵是我前幾天寫的購物車和跟著視頻做的購物車的對比: 自己寫的: 老師寫的: ​ 後面的視頻佈置的作業是把購物車進行優化,優化的內容是,分別添 ...


  前幾天跟著視頻做了一個簡單的購物車程式,但是沒有做出來,之後又跟著後面的視頻,做了一個,視頻裡面老師也講了,只有不斷的嘗試寫,才能慢慢有感覺,越不寫,越不會。下麵是我前幾天寫的購物車和跟著視頻做的購物車的對比:

  自己寫的:

 1 __Author__ = "Zhang Peng"
 2 
 3 salary = input("What is your monthly salary?\n")
 4 somethings={"IPhone":5888,"杯子":8,"眼鏡盒":15,"計算器":38,"滑鼠":128,"電腦":7889,"零食":120,}
 5 Shopping_Cart=[]
 6 
 7 while True:
 8     dongxi = input("What do you want to buy? \n")
 9 
10     if dongxi == 'quit':
11         break
12 
13     elif somethings[dongxi] == 'KeyError':
14         print("Sorry!The product you want is not found.")
15         break
16 
17     elif salary - somethings[dongxi] >= 0:
18         Shopping_Cart.append([dongxi,somethings[dongxi]],)
19         salary = salary - somethings[dongxi]
20 
21 
22     elif salary - somethings[dongxi] < 0:
23         print("The balance you have left is not enough to buy it. Try something else, please.")
24         print("Enter 'quit' to end the program.")
25 
26 
27 
28 
29 print(f'你還有{salary}塊錢!')
30 print(f'Your shopping list:\n{Shopping_Cart}')


  老師寫的:

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 index,item in enumerate(product_list):
            #print(product_list.index(item),item)
            print(index,item)
        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]
                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你的餘額只剩[%s]啦,還買個毛線\033[0m" % salary)
            else:
                print("product code [%s] is not 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")

 ​  後面的視頻佈置的作業是把購物車進行優化,優化的內容是,分別添加用戶和商家入口,用戶可以顯示自己以前的購物記錄,已經錢包餘額;商家可以添加商品和修改商品價格,下麵代碼是我自己研究研究寫出來的,後面的保存和調用的方法還是不熟練,寫的比較亂,試了好多遍,還是不行,大家可以看看:

product_list=[
    ('Iphone',5888),
    ('筆記本',12888),
    ('手錶',10600),
    ('電視',3888),
    ('',58),
]

id_list=["商家","用戶","shangjia","yonghu"]
id_shopping=input("Please input your ID:\n")

exit_flag=False
        
if id_shopping=="shangjia":
    choice=input("你是否想添加\修改商品?添加商品輸入'1',修改商品輸入'2',退出輸入'q':\n")
    if choice=="1":
        while not exit_flag:
            name=input("請輸入您想添加的商品名稱:\n")
            name2=input("請輸入您添加商品的價格:\n")
            if name=="q" or name2=="q":
                exit_flag=True
            else:
                product_list.append((name,name2),)

    elif choice=="2":
        while not exit_flag:
            name3=input("請輸入您想修改價格的商品名稱:\n")
            name4=input("請輸入您想要修改的價格:\n")
                
            if name3=="q" or name4=="q":
                exit_flag=True  
            else:
                a=product_list.index(name3)
                product_list.remove(name3)
                product_list.index((name3,name4))

    else:
        if choice=="q":
            exit_flag=True
    print(product_list)


elif id_shopping=="yonghu":
    shopping_list=[]
    with open("shopping_list.txt") as f:
        print("你的購物車裡已經有:\n")
        f.read()
    with open("salary.txt") as f:
        salary=f.read()
        print(salary)
    if salary.isdigit():    #isdigit 是判斷輸入的是不是一個數字
        salary=int(salary)
        while True:
            print("我們有一下商品:\n")
            for index,item in enumerate(product_list):
                print(index,item)
            user_choice=input("請問你還想買什麼?:\n")
            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("您買的商品已經加入購物車")
                    else:
                        print("沒錢別嘚瑟了")
                else:
                    print("沒有您要的商品")
            elif user_choice == 'q':
                print("----------shopping list----------")
                for p in shopping_list:
                    print(p)
                    with open("shopping_list.txt","w") as f:
                        f.write("shopping_list")
                print("你還剩餘",salary)
                salary.save("salary.txt")
                

            else:
                print("輸入錯誤")

else:
    shopping_list=[]
    salary=input("請輸入你的月薪:\n")
    if salary.isdigit():    #isdigit 是判斷輸入的是不是一個數字
        salary=int(salary)
        while True:
            for index,item in enumerate(product_list):
                print(index,item)
            user_choice=input("請問你想買什麼?:\n")
            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("您買的商品已經加入購物車")
                    else:
                        print("沒錢別嘚瑟了")
                else:
                    print("沒有您要的商品")
            elif user_choice == 'q':
                print("----------shopping list----------")
                for p in shopping_list:
                    print(p)
                shopping_list.save("shopping_list.txt")
                print("你還剩餘",salary)
                with open("salary.txt","w") as f:
                    f.write("salary")
                    exit()

            else:
                print("輸入錯誤")
View Code

  有興趣的可以看一下,歡迎踴躍參與。給我寫建議,謝謝!


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 多線程的目的 為什麼要使用多線程?可以簡單的分兩個方面來說: 在多個cpu核心下,多線程的好處是顯而易見的,不然多個cpu核心只跑一個線程其他的核心就都浪費了; 即便不考慮多核心,在單核下,多線程也是有意義的,因為在一些操作,比如IO操作阻塞的時候,是不需要cpu參與的,這時候cpu就可以另開一個線 ...
  • 說到原子,類似於以下的代碼可能人人都可以看出貓膩。 我想大多數人都知道其結果未必會得到1000000000。 測試一下吧。 可是真的知道貓膩了嗎?如果我編譯的時候優化一下呢? 運行速度一下子變的飛快,而且似乎都得到了10億。 這裡,mythread里cnt自加5億次被優化成了 cnt += 5000 ...
  • C++類和對象的基本簡介,包括構造函數、析構函數、拷貝構造函數、友元函數、內聯函數、類的this指針、靜態成員等內容概念介紹。 ...
  • 2017 Multi-University Training Contest - Team 1 簽到題 ...
  • Python 遞歸函數小結 ...
  • 一、搭建SVN環境 1.下載VisualSVN Sever。下載地址:https://www.visualsvn.com/server/download/ 2.安裝VisualSVN Server。 點擊“Next”。 單擊“Next”,下一步,這裡預設,安裝SVN伺服器和管理控制台,下麵也是預設勾 ...
  • 1.字典的定義 字典類似於列表,但相對於列表來說字典更加通用,列表的下標必須必須為整數,而字典下標則可以為任意字元串/數字等,不可以是可變數據類型(列表,數組,元組) 字典包含下標(keys)集合和值(vaule)集合,且keys是唯一的 2.字典的創建 實例如下: 輸入如下 3.字典的特性 無序性 ...
  • 轉自 內置函數 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...