91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

Python 之 購物車程序(列表使用場景)

發布時間:2020-08-06 10:55:13 來源:網絡 閱讀:471 作者:wx592bc92b285c7 欄目:編程語言

要求:

1、程序運行時,讓用戶輸入工資大小。

2、列出當所有產品列表清單。

3、讓用戶輸入需要購買的產品編號。

4、結束程序時,打印購買明細與剩下余額。

#Author Kang

shopping_list = [('Iphone',5000),('MacBook',9000),('Huwei P20',9999)]

shopping_car = []

salary = int(input('請輸入你的工資:'))

while True:
    for index,item in enumerate(shopping_list):
        print(index,item)
    user_change = input('請輸入你要購買的產品編號:')
    if user_change.isdigit():
        user_change=int(user_change)
        if user_change >= 0 and user_change < len(shopping_list) and salary >= shopping_list[user_change][1]:
            shopping_car.append(shopping_list[user_change])
            salary -=shopping_list[user_change][1]
        elif salary <= shopping_list[user_change][1] :
            print('你的余額已經不足!!!')
        else:
            print('你輸入的編號有誤,請重新輸入!!!!!')
    elif user_change == 'q':
        print('--------已購買的產品-------')
        print(shopping_car)
        print('剩下的余額為>>>:',salary)
        exit()
    else:
        print("輸入有誤,請重新輸入")
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

彝良县| 塘沽区| 陵川县| 肥西县| 二手房| 合山市| 蒙自县| 宜良县| 宾阳县| 岳阳市| 三亚市| 罗山县| 上高县| 逊克县| 屏东县| 雷山县| 呼玛县| 华池县| 佛山市| 兴安盟| 中卫市| 武宁县| 云林县| 宜黄县| 荥经县| 读书| 东明县| 沿河| 桦南县| 宁明县| 夹江县| 仁布县| 五家渠市| 孟连| 平安县| 靖西县| 邵阳县| 郯城县| 铁力市| 襄汾县| 乐都县|