#good文件夹内容
[
['Iphone7', 5800],
['Coffee', 30],
['疙瘩汤', 10],
['Python Book', 99],
['Bike', 199],
['ViVo X9', 2499],
]

user = {'username': None}
shopping_car_dict = dict()
money = [0] def get_goods():
with open('goods.txt','r',encoding='utf8') as fr:
goods_list = fr.read()
goods_list = eval(goods_list) return goods_list goods_list = get_goods() def register():
print('请注册') if not user['username']: username = input('username:')
pwd = input('pwd:') with open('user_info.txt','a',encoding='utf8') as fa:
fa.write(f'{username}:{pwd} |')
else:
print('已登录,无法再注册') def login():
print('欢迎登录') if not user['username']: username = input('username:')
pwd = input('pwd:') inp_user_info = f'{username}:{pwd}' with open('user_info.txt','r',encoding='utf8') as fr:
user_info = fr.read()
user_info_split = user_info.split('|') if inp_user_info in user_info_split:
print('登陆成功')
user['username'] = username
else:
print('账号或密码输入错误') else:
print('您已登陆') def shopping():
print('欢迎来到购物商场') while True: for ind, goods in enumerate(goods_list): print(f'商品编号:{ind}',goods) goods_choice = input('请输入您需要的商品,(输入q退出):') if goods_choice == 'q':
break goods_choice = int(goods_choice)
goods = goods_list[goods_choice]
print(f'购物成功:{goods}\n') goods_name = goods[0]
if goods_name in shopping_car_dict:
shopping_car_dict[goods_name] += 1
else:
shopping_car_dict[goods_name] = 1 money[0] += goods[1] print(f'购物车商品:{shopping_car_dict}, 总价:{money[0]}') def shopping_car():
print('购物车') while True:
print(f'购物车商品:{shopping_car_dict}, 总价:{money[0]}') goods_choice = input('请输入不需要的商品,若没有请按q退出') if goods_choice == 'q':
break shopping_car_dict[goods_choice] -= 1 for goods in goods_list: if goods_choice in goods: money[0] -= goods[1] def pay():
print('请支付') print(f'购物车商品:{shopping_car_dict}, 总价:{money[0]}') choice = input('是否支付(Y/y),若不支付(N/n),不支付会清空购物车:') if choice == 'Y' or choice == 'y':
print(f'支付{money[0]}成功,已购买{shopping_car_dict}')
elif choice == 'N' or choice == 'n':
shopping_car_dict.clear()
money[0] = 0
print('未支付,清空购物车成功') else:
print('输入不合法') func_msg = '''
1:注册
2:登录
3:购物
4:购物车
5:结账
q:结束
''' func_dict = {
'1': register,
'2': login,
'3': shopping,
'4': shopping_car,
'5': pay,
} while True:
print(func_msg)
func_choice = input('请选择您需要的功能')
if func_choice == 'q':
break
func_dict[func_choice]()

python编程基础之简单购物车的更多相关文章

  1. python 编程基础练习 第一天

    python 编程基础练习 第一天: 需求: 1.计算2的38次方,180*0.7输出(精度显示正常), x的y次方,数字倒序输出即345876输出678543,方法越多越好. 2.字符串处理: 1) ...

  2. 第2章 Python编程基础知识 第2.1节 简单的Python数据类型、变量赋值及输入输出

    第三节 简单的Python数据类型.变量赋值及输入输出 Python是一门解释性语言,它的执行依赖于Python提供的执行环境,前面一章介绍了Python环境安装.WINDOWS系列Python编辑和 ...

  3. Android 网络编程基础之简单聊天程序

    前一篇讲了Android的网络编程基础,今天写了一个简单的聊天程序分享一下 首先是服务端代码: package com.jiao.socketdemo; import java.io.Buffered ...

  4. Python编程基础[条件语句if 循环语句 for,while](二)

    ython条件语句是通过一条或多条语句的执行结果(True或者False)来决定执行的代码块. 可以通过下图来简单了解条件语句的执行过程: if 判断条件: 执行语句……else: 执行语句…… x= ...

  5. Python编程基础(一)

    1.Python中的变量赋值不需要类型声明 2.等号(=)用来给变量赋值 3.字符串拼接用  “+”  号 temp=‘123’ print('temp的值是%s'%temp) #整数和字符创的转换, ...

  6. python学习笔记--python编程基础

    一.一个隆重的仪式 我们在学习语言的时候,第一个写的程序肯定都是hello world.来写第一个程序吧,其实很简单,python的语法就是简单.优雅,一个print就搞定. 1 print('hel ...

  7. (Python基础)简单购物车代码

    以下是最简单,最基础的购物车代码,一起学习,一起参考.product_list = [ ('Iphone',5800), ('Mac Pro',15800), ('car',580000), ('co ...

  8. python 基础之简单购物车小程序实现

    购物车 all_list = [ ('mac',9000), ('kindle',900), ('tesla',800), ('python',105), ('bile',2000), ] savin ...

  9. 1.Python编程基础

    1. 其实,程序指的就是一系列指令,用来告诉计算机做什么,而编写程序的关键在于,我们需要用计算机可以理解的语言来提供这些指令. 虽然借助 Siri(Apple).Google Now(Android) ...

随机推荐

  1. js-点出弹框后(除了点击窗口上的叉子),点其他地方能够关闭窗口???

    HTML: <div class="A"> <div class="B"></div> </div> JS: $ ...

  2. vue-cli3热更新配置,解决热更新失败的问题,保存代码浏览器自动刷新

    在vue,config.js中配置css热更新 const IS_PROD = ['production', 'test'].includes(process.env.NODE_ENV) css: { ...

  3. EOF和~

    输入包含多组数据 while(~scanf("%d",&n))<=>  while(scanf("%d",&n)!=EOF)  

  4. 给字体和元素加阴影text-shadow和box-shadow

    1.语法:  对象选择器 {text-shadow:X轴偏移量 Y轴偏移量 阴影模糊半径 阴影颜色} 注:text-shadow可以使用一个或多个投影,如果使用多个投影时必须需要用逗号“,”分开. 2 ...

  5. #1126-JSP服务器响应

    JSP服务器响应 Response响应对象主要将JSP容器处理后的结果传回到客户端.可以通过response变量设置HTTP的状态和向客户端发送数据,如Cookie.HTTP文件头信息等. 一个典型的 ...

  6. InfluxDB安装使用

    influxdb简介   启动步骤 服务启停:sudo service influxdb start/stop/restart 安装过程: 1.增加yum源 cat <<EOF | sud ...

  7. mui初级入门教程(六)— 模板页面实现原理及多端适配指南

    文章来源:小青年原创发布时间:2016-07-26关键词:mui,webview,template,os,多端适配转载需标注本文原始地址: http://zhaomenghuan.github.io. ...

  8. JAVA 8 :从永久区(PermGen)到元空间(Metaspace)

    你注意到了吗?JDK 8早期可访问版本已经提供下载了,java 开发人员可以使用java 8 提供的新的语言和运行特性来做一些实验.其中一个特性就是完全的移除永久代(Permanent Generat ...

  9. Understanding RequireJS for Effective JavaScript Module Loading

    Modular programming is used to break large applications into smaller blocks of manageable code. Modu ...

  10. React-Native 之 GD (七)下拉刷新 及 上拉加载更多

    1.下拉刷新  使用第三方插件 下载插件: $ npm install react-native-pull@latest --save 引入: import {PullList} from 'reac ...