python 카 트 프로그램 단순 코드

1681 단어 python쇼핑 카 트
본 논문 의 사례 는 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!!!")
효과 그림:

이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기