Python简易项目--购物车 项目拆分 # 目录文件结构 - ATM - conf - settings.py - core - src.py - db - db_handler.py - interface - admin_interface.py - bank_interface.py - s ...
分类:
编程语言 时间:
2021-03-16 14:07:47
阅读次数:
0
Python购物车 一、流程图 二、目录结构 三、代码 1、bin目录: 1 import sys,os,json 2 dir_path = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) 3 sys.path.append(d ...
分类:
编程语言 时间:
2018-06-07 21:48:31
阅读次数:
191
# -*- coding:utf-8 -*-
def regiter():
while True:
username = input("请输入您的账号:").str
分类:
编程语言 时间:
2018-05-28 11:49:40
阅读次数:
147
name?=?"gaowang"
pwd?=?"123.abc"
list_he=[]??????????#定义空列表,后面接收
for?i?in?range(3):
分类:
编程语言 时间:
2018-05-18 13:55:27
阅读次数:
328
Python作业day2购物车 原文:https://www.cnblogs.com/spykids/p/5163108.html 流程图: 实现情况: 可自主注册, 登陆系统可购物,充值(暂未实现),查询余额。 撸了两天一夜的代码,不多说,直接上码,注释神马的后面再说 按 Ctrl+C 复制代码 ...
分类:
编程语言 时间:
2017-11-16 18:51:24
阅读次数:
152
功能要求:要求用户输入总资产,例如:2000显示商品列表,让用户根据序号选择商品,加入购物车购买,如果商品总额大于总资产,提示账户余额不足,否则,购买成功。附加:可充值、某商品移除购物车goods = [ {"name": "电脑", "price": 1999}, {"name": "鼠标", "... ...
分类:
编程语言 时间:
2017-11-07 19:49:31
阅读次数:
216
Python 购物车 需求 需求 流程图 流程图 Python代码实现 1 #! /usr/bin/env python 2 # -*- coding: utf-8 -*- 3 # 商城购物车 4 product_list = [ 5 ['Iphone7 Plus',6500], 6 ['Iphon ...
分类:
编程语言 时间:
2017-09-12 00:01:59
阅读次数:
277
要求:1.启动程序后,然该用户输入工资,然后打印商品列表2.允许用户根据商品编号购买商品3.用户选择商品后,检测余额是否足够,够就直接扣款,不够就提醒4.可随时退出,退出时,打印已购买商品和余额python代码:#定义商品列表
shopping={
1:["手机",1000],
2:["电脑",4000],
..
分类:
其他好文 时间:
2017-06-19 10:59:05
阅读次数:
116
需求:gz=int(raw_input(‘请输入您收入/月:‘))
F=file(‘commodity.txt‘)
shop_list=[]
product=F.readline()
products=product.split()
products_prices=F.readline()
prices=[int(i)foriinproducts_prices.split()]
min_prices=min(prices)
whileTrue:
print‘本商店提供..
分类:
其他好文 时间:
2014-09-10 02:56:01
阅读次数:
249