日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

基础的购物车程序

發(fā)布時間:2025/3/14 编程问答 26 豆豆
生活随笔 收集整理的這篇文章主要介紹了 基础的购物车程序 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
# Author:Zhang product_list =[('Iphone',5800),('Mac Pro', 9800),('Bike', 800),('Watch', 10600),('Coffee', 31),('Zhang Python', 120) ] shopping_list =[] salary = input("Input your salary:") if salary.isdigit(): #判斷是否是數(shù)字salary =int(salary)while True: # index,item 帶下標(biāo)的列表for index,item in enumerate(product_list): #for item in product_list: 列表顯示下標(biāo)print(index,item) # print(product_list.index(item),item)user_choice =input("選擇你要購買的商品編號>>>:")if user_choice.isdigit():user_choice =int(user_choice)if user_choice <len(product_list) and user_choice>=0:p_item =product_list[user_choice]if p_item[1]<= salary: #買得起 shopping_list.append(p_item)salary -= p_item[1] #\033[31;1m%s\033[0m 高亮顯示print("Added %s into shopping cart,your current balance is \033[31;1m%s\033[0m"%(p_item,salary))else:print("\033[41;1m你的余額只剩[%s]啦,請留意!!!\033[0m"% salary)else:print("product code [%s] is not exist!"%user_choice)elif user_choice=='q':print("-----------Shopping List-------------")for p in shopping_list:print(p)print("Your current balance:",salary)exit()else:print("invalid option")

?

轉(zhuǎn)載于:https://www.cnblogs.com/admise/p/7910436.html

總結(jié)

以上是生活随笔為你收集整理的基础的购物车程序的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。