中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

使用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

宜川县| 宜宾市| 祁连县| 佳木斯市| 金坛市| 永登县| 和田市| 仪征市| 榆林市| 东丰县| 凤冈县| 松桃| 大田县| 汉源县| 哈密市| 连云港市| 琼海市| 龙陵县| 安康市| 辛集市| 三门峡市| 金阳县| 桃园县| 资讯| 土默特右旗| 出国| 江城| 千阳县| 高要市| 乐清市| 顺平县| 纳雍县| 南召县| 丰宁| 应城市| 临猗县| 峨眉山市| 苏州市| 沐川县| 平遥县| 濮阳县|