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

溫馨提示×

溫馨提示×

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

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

python購物車程序簡單代碼

發布時間:2020-08-24 00:46:02 來源:腳本之家 閱讀:144 作者:不會代碼的程序員 欄目:開發技術

本文實例為大家分享了python購物車程序的具體代碼,供大家參考,具體內容如下

代碼:

''''' 
Created on 2017年9月4日 
 
@author: len 
''' 
 
 
product_list = [ 
 ('Robot',200000), 
 ('MacPro',12000), 
 ('Iphone8',8888), 
 ('Hello World',1200), 
    ] 
shopping_list = [] 
user_salary=input("請輸入你的工資:") 
if user_salary.isdigit(): 
 user_salary = int(user_salary) 
 while True: 
  print("商品如下:") 
  for index,item in enumerate(product_list): 
    
   print (index,item) 
  user_choice = input("請輸入要購買的商品編號:") 
  if user_choice.isdigit(): 
   user_choice = int(user_choice) 
   if user_choice < len(product_list) and user_choice > -1: 
    p_item = product_list[user_choice] 
    if user_salary>=p_item[1]: 
     shopping_list.append(p_item) 
     user_salary-=p_item[1] 
     print("購買商品",p_item,"成功您的余額為",user_salary,"元!" ) 
    else: 
     print("您的余額為",user_salary,"余額不足以購買此商品,購買失敗!") 
        
   else: 
    print("并無此產品!") 
  elif user_choice == "q": 
   print("--------shopping list-------") 
   for i in shopping_list: 
    print(i) 
   exit() 
  else: 
   print("invalidate!!!")

效果圖:

python購物車程序簡單代碼

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

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

AI

南京市| 上饶县| 泗水县| 恩施市| 天全县| 万州区| 剑阁县| 即墨市| 土默特右旗| 中西区| 大悟县| 遵化市| 临澧县| 包头市| 林芝县| 蓬莱市| 华坪县| 房产| 玉山县| 瓮安县| 莱西市| 纳雍县| 宁晋县| 忻城县| 黔江区| 遂宁市| 漯河市| 上犹县| 上栗县| 瑞金市| 介休市| 河源市| 宁陵县| 社旗县| 望奎县| 巴彦淖尔市| 连云港市| 延寿县| 望谟县| 高陵县| 滨州市|