python第二天

Posted gejian1991

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python第二天相关的知识,希望对你有一定的参考价值。

#购物车实例
#Author:ge jian

product_list = [
(‘iphone‘,5800),
(‘Mac‘,9800),
(‘Bike‘,800),
(‘Watch‘,2800),
(‘Coffee‘,58),
(‘Alex python‘,158),
]
shopping_list = []
salary = input("Input your salary:")
if salary.isdigit():
salary = int(salary)
while True:
for index,item in enumerate(product_list):
# print(product_list.index(item)+1,item) enumerate用法
print(index,item)
user_choice = input("选择要买什么?>>>:")
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 \033[31;1m%s\033[0m" %(p_item,salary))
else:
print("\033[35;1m你的余额只剩[%s],还买个毛线呀\033[0m" % salary)

else:
print("所选择的商品不存在,请重新输入")
elif user_choice == ‘q‘:
print(‘----------shopping List-----------‘)
for p in shopping_list:
print(p)
print("Your current balance:%s"%salary)
exit()
else:
print(‘invalid option‘)













































以上是关于python第二天的主要内容,如果未能解决你的问题,请参考以下文章

python学习第二天

python学习第二天

python-修行第二天

python基础自学 第二天

python第二天 python介绍与变量

一入python深似海,第二天