溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

購物車程序

發(fā)布時(shí)間:2020-07-18 01:39:29 來源:網(wǎng)絡(luò) 閱讀:200 作者:leiwenbin627 欄目:編程語言

product_list=[("iPhone XS Max 256G",11000),('MacBook Pro 512G',19000),('Bike',800),("Apple Watch Series 4",3500),("Coffee",30),("Alex Python Book",60)]
shopplist_list=[]
salary=input("請(qǐng)輸入你的收入:")
if salary.isdigit():
    salary=int(salary)
    while True:
        for index,item in enumerate(product_list):
            print(index,item)
        user_choice=input("你選擇要買:").strip()
        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:
                    shopplist_list.append(p_item)
                    salary=salary-p_item[1]
                    print("added %s into shopping cart,you current balance is %s"%(p_item,salary))
                else:
                    print("你的余額只剩[%s]啦,余額不足"%salary)
            else:
                print("product code [%s] is not exist!"%user_choice)
        elif user_choice=="q":
            print("---shopping list----")
            for p in shopplist_list:
                print(p[0])
            print("已經(jīng)購買:",shopplist_list,"\n還剩",salary,"元")
            break
        else:
            print("invalid option")
            print("已經(jīng)購買:", shopplist_list, "\n還剩", salary, "元")
            break

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI