中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

丰县| 东乡| 桂阳县| 乐昌市| 七台河市| 台中市| 新巴尔虎右旗| 安陆市| 都江堰市| 宜君县| 牟定县| 赫章县| 孝昌县| 克东县| 定州市| 仙居县| 葵青区| 鹤峰县| 睢宁县| 鲁山县| 壤塘县| 缙云县| 眉山市| 板桥市| 女性| 平邑县| 白朗县| 满城县| 金平| 宜兰县| 定结县| 淮阳县| 安阳县| 望城县| 平潭县| 哈尔滨市| 顺平县| 建平县| 峨边| 墨竹工卡县| 咸阳市|