亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python如何實現簡單購物車小程序

發布時間:2022-02-09 09:27:17 來源:億速云 閱讀:147 作者:小新 欄目:開發技術

小編給大家分享一下Python如何實現簡單購物車小程序,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

具體內容如下

要求

Python如何實現簡單購物車小程序

代碼

# --*--coding:utf-8--*--
# Author: 村雨

import pprint

productList = [('Iphone 8', 10000),
               ('GTX2080', 8000),
               ('Z7KP7-GT', 6000),
               ('Mac pro', 15000),
               ('Honor 10', 2800),
               ('Iphone XR', 12000),
               ('Mi 8', 2999)
               ]

shoppingList = []

print('輸入你的工資:')
salary = input()
if not salary.isdigit():
    print('請輸入整數')
else:
    salary = int(salary)
    while True:
        for index, item in enumerate(productList):
            print(index + 1, item)
        print('輸入你要買的商品的序號:')
        userWant = input()
        if userWant.isdigit():
            userWant = int(userWant)
            if userWant <= len(productList) and userWant > 0:
                print('你要購買的是:', productList[userWant - 1][0])
                if salary >= productList[userWant - 1][1]:
                    shoppingList.append(productList[userWant - 1][0])
                    salary -= productList[userWant - 1][1]
                    print('你已經購買了' + productList[userWant - 1][0] + ', 你的余額為 ' + str(salary))
                else:
                    print('對不起,你的余額不足!請努力工作吧!')
                    print('你當前所購買的商品為:')
                    for brought in shoppingList:
                        pprint.pprint(brought)
                    print('你當前余額為:', salary)
                    exit()
            else:
                print('你輸入的商品序號有錯,請重新輸入')
        elif userWant == 'q':
            print('-----------Shopping List----------')
            for brought in shoppingList:
                pprint.pprint(brought)
            print('你的余額為 ', salary)
            exit()
        else:
            print('Invalid input!!!')

結果

Python如何實現簡單購物車小程序

Python如何實現簡單購物車小程序

Python如何實現簡單購物車小程序

看完了這篇文章,相信你對“Python如何實現簡單購物車小程序”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

晋城| 景德镇市| 武隆县| 台东县| 湟中县| 南川市| 宣城市| 仁布县| 托克托县| 宜阳县| 阜新| 手机| 砀山县| 长宁县| 连平县| 扶风县| 宁陕县| 隆德县| 裕民县| 江川县| 永福县| 商城县| 永泰县| 普兰店市| 巴里| 友谊县| 阿城市| 扎赉特旗| 太仆寺旗| 贞丰县| 北碚区| 卓资县| 马山县| 永清县| 仲巴县| 介休市| 虞城县| 德钦县| 嘉义市| 乌拉特后旗| 万全县|