python练习_购物车(简版)

需求:

  1. 写一个python购物车可以输入用户初始化金额
  2. 可以打印商品,且用户输入编号,即可购买商品
  3. 购物时计算用户余额,是否可以购买物品
  4. 退出结算时打印购物小票

以下代码实现的功能与思路:

功能: 

  (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练习_购物车(简版)的更多相关文章

  1. python练习_购物车(2)

    用python写了一个购物车程序,主要是练习,代码如下 主入口文件:main.py #!/usr/bin/env python # -*- coding:utf-8 -*- #先调用用户登录函数,在进 ...

  2. python学习_新闻联播文字版爬虫(V 1.0版)

    python3的爬虫练习,爬取的是新闻联播文字版网站 #!/usr/bin/env python # -*- coding: utf-8 -*- ''' __author__ = 'wyf349' _ ...

  3. Python练习_购物车_day6

    第一次代码 (1) 输出商品列表,用户输入序号,显示用户选中的商品. 页面显示 序号 + 商品名称,如: 1 手机 2 电脑 (2): 用户输入选择的商品序号,然后打印商品名称 (3):如果用户输入的 ...

  4. python学习_新闻联播文字版爬虫(V 1.0.1版)

    更新记录: 1.新增了headers头的随机获取: 2.新增了logging模块添加日志信息(学习用): #!/usr/bin/env python # -*- coding: utf-8 -*- ' ...

  5. 按行切割大文件(linux split 命令简版)

    按行切割大文件(linux split 命令简版) #-*- coding:utf-8 -*- __author__ = 'KnowLifeDeath' ''' Linux上Split命令可以方便对大 ...

  6. Underscore源码阅读极简版入门

    看了网上的一些资料,发现大家都写得太复杂,让新手难以入门.于是写了这个极简版的Underscore源码阅读. 源码: https://github.com/hanzichi/underscore-an ...

  7. python人工智能爬虫系列:怎么查看python版本_电脑计算机编程入门教程自学

    首发于:python人工智能爬虫系列:怎么查看python版本_电脑计算机编程入门教程自学 http://jianma123.com/viewthread.aardio?threadid=431 本文 ...

  8. 《利用Python进行数据分析·第2版》第四章 Numpy基础:数组和矢量计算

    <利用Python进行数据分析·第2版>第四章 Numpy基础:数组和矢量计算 numpy高效处理大数组的数据原因: numpy是在一个连续的内存块中存储数据,独立于其他python内置对 ...

  9. < 利用Python进行数据分析 - 第2版 > 第五章 pandas入门 读书笔记

    <利用Python进行数据分析·第2版>第五章 pandas入门--基础对象.操作.规则 python引用.浅拷贝.深拷贝 / 视图.副本 视图=引用 副本=浅拷贝/深拷贝 浅拷贝/深拷贝 ...

随机推荐

  1. read gc log

    http://www.aichengxu.com/article/Java/18368_2.html https://blogs.oracle.com/poonam/entry/understandi ...

  2. winform无法查看设计器

    在代码中右键无法查看设计器.将无效的引用去除,重新生成即可.

  3. 微信小程序实例教程(三)

    第七章:微信小程序编辑名片页面开发   编辑名片有两条路径,分为新增名片流程与修改名片流程. 用户手填新增名片流程:   首先跳转到我们的新增名片页面 1 需要传递用户的当前 userId,wx.na ...

  4. hibernate---一对一单向外键关联--annotation (重要!!!)

    1. 生成wife.java: package com.bjsxt.hibernate; import javax.persistence.Entity; import javax.persisten ...

  5. javascript 函数的基础知识

    1. Why JavaScript functions always return a value? I'm taking a course in JavaScript programming, an ...

  6. 一道关于 precision、recall 和 threshold关系的机器学习题

    Suppose you have trained a logistic regression classifier which is outputing hθ(x). Currently, you p ...

  7. (中等) UESTC 360 Another LCIS ,线段树+区间更新。

    Description: For a sequence S1,S2,⋯,SN, and a pair of integers (i,j), if 1≤i≤j≤N and Si<Si+1<S ...

  8. 批量删除ASP.NET中的缓存(cache)

    IDictionaryEnumerator em = HttpContext.Current.Cache.GetEnumerator(); while (em.MoveNext())        { ...

  9. FZU 2095 水面高度

    一共六种情况.手算即可. #include<cstdio> #include<cstring> #include<cmath> int T; double a,b, ...

  10. [转] 如何让CloudStack使用KVM创建Windows实例成功识别并挂载数据盘

    在使用kvm给windows虚拟机动态挂载virtio类型的硬盘时候遇到问题,通过下面的文章知道需要安装virtio驱动,从而解决问题使挂在正常,在此处mark一下 问题产生背景: 使用CloudSt ...