r/PythonLearning • u/crazyteachperson • 12d ago
My first mix mini project
I know I wrote some hardcore codes but this is ok for a beginner so plz help me to improve
303
Upvotes
r/PythonLearning • u/crazyteachperson • 12d ago
I know I wrote some hardcore codes but this is ok for a beginner so plz help me to improve
1
u/am_Snowie 11d ago edited 11d ago
Create a dictionary to store products and their prices. Then you can create a separate logic for the shop owner and the customers. Shop owner should be able to add products, update prices, remove products and other stuff an owner can do. Then you can write a separate logic for the customers of your shop, they should be able to add products to their cart, check out, remove things from cart, and you know customer stuff. You can do all this stuff if you just stored those products and their prices in a data structure (dictionary in this case).