這篇文章主要為大家詳細介紹了Python實現購物車購物小程序,具有一定的參考價值,有興趣的小伙伴們可以參考一下
概要
#照理說,我們入門的第一個小程式都應該是Hello World。因為比較簡單,我這也就不做過多的演示 了。
下面是我寫的一個小程式。主要用於練習Python的基本文法,以及入門。
主要實作功能
要求使用者輸入自己預期消費額度.
展示現有商品資訊,要求使用者選擇
使用者選擇對應商品標號後(注意判斷是否超出預期消費額度等操作),儲存到購物車
用戶退出後顯示購物車資訊以及剩餘額度狀況
#程式碼:
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @author: 烽火 @license: Apache Licence @file: shopping.py @time: 6/16/17 10:05 AM """ goods = [ ("IPhone", 5800), ("Watch", 2000), ("MacBook", 12000)] goods_cart = [] mybudget = input("请输入您的预算:") # 不考虑是小数的情况 while not mybudget.isdigit(): mybudget = input("输入有误,请重新输入您的预算:") mybudget = int(mybudget); while True: print("商品列表".center(50, "-")) print("编号".center(8, " "), "名称".ljust(30, " "), "价格".ljust(10, " ")) for i in enumerate(goods): print(str(i[0]).center(10, " "), str(i[1][0]).ljust(31, " "), str(i[1][1]).ljust(10, " ")) user_choose = input("请输入您的选择:") if user_choose.isdigit(): user_choose = int(user_choose) if user_choose >= 0 and user_choose < len(goods): if (mybudget - goods[user_choose][1]) >= 0: goods_cart.append(goods[user_choose]) mybudget -= goods[user_choose][1] print("预算还有%d" % mybudget) else: print("预算不够啦~") else: print("不存在该商品~") elif user_choose == 'q': break else: print("您的输入有误~") print("预算还剩%d了" %(mybudget)) print("购物车商品信息".center(50, "-")) for i in enumerate(goods_cart): print(str(i[0]).center(10, " "), str(i[1][0]).ljust(31, " "), str(i[1][1]).ljust(10, " "))
相關推薦:
#########Python3實作購物車功能############# ###########以上是Python實作購物車購物小程式的詳細內容。更多資訊請關注PHP中文網其他相關文章!