Python实现购物车程序


Posted in Python onApril 16, 2018

本文实例为大家分享了程序:Python购物车程序,具体内容如下

需求:

  • 启动程序后,让用户输入工资,然后打印商品列表
  • 允许用户根据商品编号购买商品
  • 用户选择商品后,检测余额是否够,够就直接扣款,不够就提醒
  • 可随时退出,退出时,打印已购买商品和余额
  • 如余额不足,可充值 

代码:

#coding=utf-8
#Version:python 3.6.0
#Tools:Pycharm 2017.3.2
_date_ = '2018/4/16/016 14:50'
_author_ = 'Hongyong'

salary = int(input("Please input your salary: "))
shoppingmart = []
items = (["1","Huawei","¥",2800],
     ["2","Earphone","¥",300],
     ["3","Book","¥",80])
msg_items = '''
----------items----------
1. Huawei   ¥ 2800
2. Earphone  ¥ 300
3. Book    ¥ 80
-------------------------
'''
print(msg_items)
while True:
  shopindex = int(input("Please choose goods: "))
  if salary > items[shopindex-1][3]:
    shoppingmart.append(items[shopindex-1])
    salary -= int(items[shopindex-1][3])
    print("You have bought {name} !".format(name = items[shopindex-1][1]))
    print("Your balance is: ¥",salary)
    decision = input("Do you want to quit now?")
    print(msg_items)
  else:
    print("Your balance is not enough! Please try sth else.")
    recharge_ans = input("Do you want to recharge?")
    if recharge_ans == "y":
      recharge = int(input("Please input money: "))
      print("Please wait for a while...")
      salary += recharge
      print("You have recharged successfully!")
      print("And the balance is: ",salary,"now!")
    decision = input("Do you want to quit now?")
    print(msg_items)
  if decision == "q":
    break
  else:
    continue
print("You have bought: ",shoppingmart)
print("Your balance is: ¥",salary)
print("Welcome your next coming!")

程序效果:

Please input your salary: 0
 
----------items----------
1. Huawei   ¥ 2800
2. Earphone  ¥ 300
3. Book    ¥ 80
-------------------------
 
Please choose goods: 1
Your balance is not enough! Please try sth else.
Do you want to recharge?y
Please input money: 30000
Please wait for a while...
You have recharged successfully!
And the balance is: 30000 now!
Do you want to quit now?
 
----------items----------
1. Huawei   ¥ 2800
2. Earphone  ¥ 300
3. Book    ¥ 80
-------------------------
 
Please choose goods: 1
You have bought Huawei !
Your balance is: ¥ 27200
Do you want to quit now?
 
----------items----------
1. Huawei   ¥ 2800
2. Earphone  ¥ 300
3. Book    ¥ 80
-------------------------
 
Please choose goods: 2
You have bought Earphone !
Your balance is: ¥ 26900
Do you want to quit now?q
 
----------items----------
1. Huawei   ¥ 2800
2. Earphone  ¥ 300
3. Book    ¥ 80
-------------------------
 
You have bought: [['1', 'Huawei', '¥', 2800], ['2', 'Earphone', '¥', 300]]
Your balance is: ¥ 26900
Welcome your next coming!

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python实现跨文件全局变量的方法
Jul 07 Python
使用FastCGI部署Python的Django应用的教程
Jul 22 Python
用Python的Django框架来制作一个RSS阅读器
Jul 22 Python
Python使用tablib生成excel文件的简单实现方法
Mar 16 Python
Python程序中的观察者模式结构编写示例
May 27 Python
python如何为被装饰的函数保留元数据
Mar 21 Python
python实时监控cpu小工具
Jun 21 Python
Python查找第n个子串的技巧分享
Jun 27 Python
如何使用Python 打印各种三角形
Jun 28 Python
django 使用全局搜索功能的实例详解
Jul 18 Python
Python数组并集交集补集代码实例
Feb 18 Python
python+opencv3.4.0 实现HOG+SVM行人检测的示例代码
Jan 28 Python
神经网络(BP)算法Python实现及应用
Apr 16 #Python
python读取视频流提取视频帧的两种方法
Oct 22 #Python
python读取和保存视频文件
Apr 16 #Python
Python读取视频的两种方法(imageio和cv2)
Apr 15 #Python
python2.7实现FTP文件下载功能
Apr 15 #Python
python实现多线程网页下载器
Apr 15 #Python
Python实现定时精度可调节的定时器
Apr 15 #Python
You might like
新版PHP极大的增强功能和性能
2006/10/09 PHP
使用 MySQL Date/Time 类型
2008/03/26 PHP
php笔记之:文章中图片处理的使用
2013/04/26 PHP
PHP+sqlite数据库操作示例(创建/打开/插入/检索)
2016/05/26 PHP
在Thinkphp中使用ajax实现无刷新分页的方法
2016/10/25 PHP
PHP简单实现遍历目录下特定文件的方法小结
2017/05/22 PHP
最短的IE判断代码
2011/03/13 Javascript
jqTransform form表单美化插件使用方法
2012/07/05 Javascript
js页面跳转的问题(跳转到父页面、最外层页面、本页面)
2013/08/14 Javascript
JS替换文本域内的回车示例
2014/02/18 Javascript
jQuery对于显示和隐藏等常用状态的判断方法
2014/12/13 Javascript
jQuery中appendTo()方法用法实例
2015/01/08 Javascript
浅谈Nodejs观察者模式
2015/10/13 NodeJs
JS实战篇之收缩菜单表单布局
2016/12/10 Javascript
Mongoose学习全面理解(推荐)
2017/01/21 Javascript
vue中axios解决跨域问题和拦截器的使用方法
2018/03/07 Javascript
JS实现将对象转化为数组的方法分析
2019/01/21 Javascript
微信小程序开发常见问题及解决方案
2019/07/11 Javascript
Node.js爬虫如何获取天气和每日问候详解
2019/08/26 Javascript
Vue组件基础用法详解
2020/02/05 Javascript
Vue 组件的挂载与父子组件的传值实例
2020/09/02 Javascript
再谈Python中的字符串与字符编码(推荐)
2016/12/14 Python
python 安装virtualenv和virtualenvwrapper的方法
2017/01/13 Python
Python分治法定义与应用实例详解
2017/07/28 Python
如何获取Python简单for循环索引
2019/11/21 Python
使用Keras实现简单线性回归模型操作
2020/06/12 Python
解决PyCharm不在run输出运行结果而不是再Console里输出的问题
2020/09/21 Python
详解python第三方库的安装、PyInstaller库、random库
2021/03/03 Python
特步官方商城:Xtep
2017/03/21 全球购物
《罗布泊,消逝的仙湖》教学反思
2014/03/01 职场文书
弘扬民族精神演讲稿
2014/05/07 职场文书
总经理人事任命书
2014/06/05 职场文书
承租经营合作者协议书
2014/10/01 职场文书
三八红旗手事迹材料
2014/12/26 职场文书
机动车交通事故协议书
2015/01/29 职场文书
MySQL 开窗函数
2022/02/15 MySQL