概述
names = ['zhangsan','lisi','wangwu','zhaoliu','shanshan','alex',3,45,24,6,2,546,2]
names2= names[names.index(2)+1:] #获取第一个2的索引值后加一
print(names2.index(2)+names.index(2)+1) #打印第二个2的索引值
最后一个是购物车程序:
写一个循环,不断的问用户想买什么,用户选择一个商品编号,就把对应的商品添加到购物车里, 最终用户输入q退出时,打印购物车里的商品列表
1 #author:wilbur0402
2 products = [['Iphone8', 6888], ['MacPro', 14800], ['小米6', 2499], ['Coffee', 31], ['Book', 80], ['Nike Shoes', 799]]3
4 shopping_cart =[]5 whileTrue:6 print('------products list------')7 for index,i inenumerate(products):8 print('%s.%s %s'%(index,i[0],i[1]))9 chioce = input('请输入你需要购买的序号:(0-5)')10 ifchioce.isdigit():11 chioce =int(chioce)12 if chioce >= 0 and chioce
22 else:23 print('输入有误!')
之前做这种
最后
以上就是俏皮小蘑菇为你收集整理的python编程买东西的题_python开发学习笔记之二(购物车练习)的全部内容,希望文章能够帮你解决python编程买东西的题_python开发学习笔记之二(购物车练习)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复