Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to implement simple Shopping cart Mini Program by Python

2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

Editor to share with you Python how to achieve a simple shopping cart Mini Program, I hope you will learn something after reading this article, let's discuss it together!

The details are as follows

Request

Code

#-*-coding:utf-8--*--# Author: village Rain import pprintproductList = [('Iphone 8, 10000), (' GTX2080', 8000), ('Z7KP7 Murray GTO, 6000), (' Mac pro', 15000), ('Honor 10, 2800), (' Iphone XR', 12000) ('Mi 8, 2999)] shoppingList = [] print ('enter your salary:') salary = input () if not salary.isdigit (): print ('Please enter integers') else: salary = int (salary) while True: for index, item in enumerate (productList): print (index + 1 Item) print ('enter the serial number of the item you want to buy:') userWant = input () if userWant.isdigit (): userWant = int (userWant) if userWant 0: print ('you want to buy:' ProductList [userWant-1] [0]) if salary > = productList [userWant-1] [1]: shoppingList.append (productList [userWant-1] [0]) salary-= productList [userWant-1] [1] print ('you have purchased' + productList [userWant-1] [0] +' Your balance is'+ str (salary)) else: print ('I'm sorry Your balance is insufficient! Please work hard! Print ('your current purchase is:') for brought in shoppingList: pprint.pprint (brought) print ('your current balance is:', salary) exit () else: print (the serial number you entered is wrong Please re-enter') elif userWant = = 'qcards: print ('-Shopping List-') for brought in shoppingList: pprint.pprint (brought) print ('your balance is', salary) exit () else: print ('Invalid inputfully qualified employees')

Result

After reading this article, I believe you have a certain understanding of "how Python implements simple shopping cart Mini Program". If you want to know more about it, you are welcome to follow the industry information channel. Thank you for reading!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report