shopping_list(刚开始学python)
Posted cq001
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shopping_list(刚开始学python)相关的知识,希望对你有一定的参考价值。
我今天才知道中文的冒号(:)和英文的冒号(:)不一样,惊了。
代码
product_list=[
("ipad",3896),
("phone",3299),
("headset",2199),
("vip",999)
]
shopping_list=[]
salary=input("your salary is:")
if salary.isdigit():
salary=int(salary)
while True:
for index,item in enumerate(product_list):
print(index,item)
user_choice=input("please choose which you wanna:")
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:
shopping_list.append(p_item)
salary-=p_item[1]
print("Added %s into shopping cart,your current balance is %s"%(p_item,salary))
else:
print("your salary is not enough.")
else:
print("produt code [%s] is not exist."%user_choice)
elif user_choice=="q":
print("-----------shoping list------------")
for p in shopping_list:
print(p)
print("your current balance is:",salary)
exit()
else:
print("invalid optiom")
else:
print("Do you have money???")
以上是关于shopping_list(刚开始学python)的主要内容,如果未能解决你的问题,请参考以下文章
你好 我刚开始学python 我现在用py2exe打包 但是会出现 no module named py2exe