91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

叶城县| 拉孜县| 阳山县| 漳浦县| 当阳市| 芷江| 海原县| 浮山县| 阳城县| 安康市| 合川市| 临江市| 玉龙| 赤壁市| 福州市| 兴城市| 浦县| 孝义市| 曲沃县| 石家庄市| 灵川县| 新乡县| 许昌县| 绥滨县| 二手房| 阿克苏市| 金塔县| 彭阳县| 菏泽市| 寿宁县| 柏乡县| 屯昌县| 修武县| 环江| 衡阳县| 平陆县| 中西区| 象州县| 孟州市| 布尔津县| 万盛区|