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

溫馨提示×

溫馨提示×

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

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

使用Python實現購物車項目

發布時間:2021-06-02 18:02:15 來源:億速云 閱讀:112 作者:Leah 欄目:開發技術

本篇文章給大家分享的是有關使用Python實現購物車項目,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

代碼

# --*--coding:utf-8--*--
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

酒泉市| 漳浦县| 墨江| 武威市| 呼伦贝尔市| 延吉市| 宜城市| 平泉县| 汉源县| 舟曲县| 井冈山市| 东光县| 海丰县| 望谟县| 娄烦县| 嘉祥县| 云龙县| 昂仁县| 辽中县| 金山区| 桦南县| 丹阳市| 宣城市| 灵石县| 乌什县| 大埔区| 昭通市| 新津县| 宜黄县| 襄垣县| 锦屏县| 元朗区| 阿坝县| 嵊州市| 尼玛县| 怀宁县| 威远县| 页游| 仁化县| 昌吉市| 武川县|