python练习_购物车(简版)
python练习_购物车(简版)
需求:
- 写一个python购物车可以输入用户初始化金额
- 可以打印商品,且用户输入编号,即可购买商品
- 购物时计算用户余额,是否可以购买物品
- 退出结算时打印购物小票
以下代码实现的功能与思路:
功能:
(1)预算金额控制,只能输入大于0的数字
(2)商品格式化打印
(3)选择完成要买的商品后,提示用户再次确认,确认后开始计算用户余额是否大于等于商品价格,价格正确后则加入购物车
(4)输入q则进行结算,结算时将重复的商品进行合并,显示个数,并计算消费总额和余额
思路:
(1)商品打印通过嵌套列表实现
(2)购买商品是只需要比较用户余额和商品价格即可,如果比商品金额打就把这个商品加入到一个列表中
(3)结算时计算用户购物车列表即可
流程图:

使用方法:
执行环境:Python3.5
执行方法,执行执行即可
代码:
#!/usr/bin/env python
# -*- coding: utf-8 -*- import time List_items = [ ["iPhone4",100],["iPhone5",200],["iPhone6",300],["iPhone7",4000],["Python",10000],]
User_shopping_cart = [] def in_money():
'''
判断用户输入金额的函数
'''
global user_in_money
while True:
user_in_money = input("Please enter initial funds:").strip()
if user_in_money.isdigit():
if int(user_in_money) > 0:
while True:
print_lists()
else:
print("\033[31mInput Error!\033[0m")
else:
print("\033[31mInput Error!\033[0m") def print_lists():
'''
获取用户输入的编号,调用结算模块
:return:
'''
print("Product List".center(40,"-"))
Spaces = " "*2
for Product_info in List_items:
Underlined = 20-len(Product_info[0])
print(Spaces,List_items.index(Product_info)+1,Spaces,Product_info[0],"."*Underlined,Product_info[1])
print("-"*40) in_Numbering = input("Please enter the product number,[q]exit billing:").strip()
if in_Numbering.isdigit():
if int(in_Numbering) > 0 and int(in_Numbering)<= len(List_items):
Transaction_Calculations(in_Numbering)
else:
print("\033[31mThe item number does not exist!\033[0m")
else:
if in_Numbering == "q":
settlement()
else:
print("\033[31mInput Error!\033[0m") def Transaction_Calculations(Numbering):
'''
加入购物车模块,判断用户余额是否足够购买商品
'''
global user_in_money
user_in_money = int(user_in_money)
Numbering = int(Numbering)
Pu_confirmation = input("Product \033[32m%s\033[0m Whether to add to cart(y/n):"%List_items[Numbering-1][0]).strip()
if Pu_confirmation == "y":
if user_in_money >= List_items[Numbering-1][1]:
User_shopping_cart.append(List_items[Numbering-1])
user_in_money = user_in_money - List_items[Numbering-1][1]
print("Product %s Added Cart, Current Balance %s¥"%( List_items[Numbering-1][0],user_in_money))
else:
print("The balance is insufficient, the commodity price \033[31m%s\033[0m¥,lacks \033[31m%s\033[0m¥"%(List_items[Numbering-1][1],List_items[Numbering-1][1]-user_in_money))
else:
print("\033[31mNot added to cart\033[0m") def settlement():
'''
结算模块
'''
if len(User_shopping_cart) == 0:
print("Shopping Cart There are no products, thank you patronage goodbye")
exit()
else:
print("Shopping list".center(50,"-"))
consumption = 0
new_user = []
[new_user.append(i) for i in User_shopping_cart if not i in new_user]
for user_cart in new_user:
number = User_shopping_cart.count(user_cart)
settlement_un = 15-len(user_cart[0])
to_settlement_un = 25 - settlement_un - len(str(user_cart[1])) - len(user_cart[0])
consumption += user_cart[1]*number
print(" "*5,user_cart[0],"."*settlement_un,user_cart[1],"¥","."*to_settlement_un,"%s个"%(number))
times = time.strftime("%Y-%m-%d %H:%M:%S",time.localtime(time.time()))
print(times.center(50,"-"))
print("Shopping cost \033[32m%s\033[0m¥, Current balance \033[32m%s\033[0m¥,Thank you to patronize!".center(50,"-")%(consumption,user_in_money))
exit() if __name__ == "__main__":
in_money()
购物车
python练习_购物车(简版)的更多相关文章
- python练习_购物车(2)
用python写了一个购物车程序,主要是练习,代码如下 主入口文件:main.py #!/usr/bin/env python # -*- coding:utf-8 -*- #先调用用户登录函数,在进 ...
- python学习_新闻联播文字版爬虫(V 1.0版)
python3的爬虫练习,爬取的是新闻联播文字版网站 #!/usr/bin/env python # -*- coding: utf-8 -*- ''' __author__ = 'wyf349' _ ...
- Python练习_购物车_day6
第一次代码 (1) 输出商品列表,用户输入序号,显示用户选中的商品. 页面显示 序号 + 商品名称,如: 1 手机 2 电脑 (2): 用户输入选择的商品序号,然后打印商品名称 (3):如果用户输入的 ...
- python学习_新闻联播文字版爬虫(V 1.0.1版)
更新记录: 1.新增了headers头的随机获取: 2.新增了logging模块添加日志信息(学习用): #!/usr/bin/env python # -*- coding: utf-8 -*- ' ...
- 按行切割大文件(linux split 命令简版)
按行切割大文件(linux split 命令简版) #-*- coding:utf-8 -*- __author__ = 'KnowLifeDeath' ''' Linux上Split命令可以方便对大 ...
- Underscore源码阅读极简版入门
看了网上的一些资料,发现大家都写得太复杂,让新手难以入门.于是写了这个极简版的Underscore源码阅读. 源码: https://github.com/hanzichi/underscore-an ...
- python人工智能爬虫系列:怎么查看python版本_电脑计算机编程入门教程自学
首发于:python人工智能爬虫系列:怎么查看python版本_电脑计算机编程入门教程自学 http://jianma123.com/viewthread.aardio?threadid=431 本文 ...
- 《利用Python进行数据分析·第2版》第四章 Numpy基础:数组和矢量计算
<利用Python进行数据分析·第2版>第四章 Numpy基础:数组和矢量计算 numpy高效处理大数组的数据原因: numpy是在一个连续的内存块中存储数据,独立于其他python内置对 ...
- < 利用Python进行数据分析 - 第2版 > 第五章 pandas入门 读书笔记
<利用Python进行数据分析·第2版>第五章 pandas入门--基础对象.操作.规则 python引用.浅拷贝.深拷贝 / 视图.副本 视图=引用 副本=浅拷贝/深拷贝 浅拷贝/深拷贝 ...
随机推荐
- 计算机学院大学生程序设计竞赛(2015’12) 1005 Bitwise Equations
#include<cmath> #include<cstdio> #include<cstring> #include<algorithm> using ...
- vs2008安装opencv2.4.6
最近安装opencv2.4.6,发现犯了一个很愚蠢的错误,在此记录一下. opencv的头文件包含应该位于build文件夹内,而我误将opencv文件夹下的include包含了进去,造成无法找到头文件 ...
- jquery.elevateZoom实现仿淘宝看图片,一张小的,一张大用于鼠标经过时候显示
实现这个效果你需要准备两张图片,一张小的,一张大用于鼠标经过时候显示.然后我们只要为img标签添加data-zoom-image属性,其值为大图的地址,最后在javascript中选择该图片调用ele ...
- AWK第一篇------全面介绍
AWK-文本流编辑器 目录 [隐藏] 1 命令行语法 2 用shell实现调用awk 3 awk语言概要 3.1 记录和字段 3.2 脚本的格式 3.3 行为终止 3.4 注释 3.5 模式 3.6 ...
- JAVA基础--工厂模式
interface Fruit{ // 定义一个水果接口 public void eat() ; // 吃水果 } class Apple implements Fruit{ public void ...
- ZOJ 3929 Deque and Balls
答案=所有情况中总共递减次数*2 放完i个和放完i-1个之间的递减次数是可以递推的. 有一部分是放完i-1个之后产生的,还有一部分是放完第i个之后新产生的. 注意减去多加的部分. 2的i次方可以打个表 ...
- FZU 2091 播放器
简单模拟题,开个栈维护一下即可. #include<cstdio> #include<cstring> #include<cmath> #include<st ...
- Kconfig基本语法
Linux 内核在2.6版本以后将配置文件由原来的config.in改为Kconfig.当执行make menuconfig时会出现内核的配置界面,所有配置工具都是通过读取arch/$(ARCH)Kc ...
- WKWebKit基础
UIWebView & UIWebViewDelegate 这个两个东西在 WKWebKit 中被重构成 14 个类 3 个协议. WKWebKit Framework Classes WKB ...
- LPC2478的GPIO使用详解
GPIO使用 LPC2478的GPIO是不能断开时钟的,上电就连接.处理GPIO主要就下面几步 1. 设置为普通IO模式 2. 设置输入输出方向 3. 设置值 以下寄存器 ...