# -*- coding: utf-8 -*-
"""
              ┏┓      ┏┓
            ┏┛┻━━━┛┻┓
            ┃      ☃      ┃
            ┃  ┳┛  ┗┳  ┃
            ┃      ┻      ┃
            ┗━┓      ┏━┛
                ┃      ┗━━━┓
                ┃  神兽保佑    ┣┓
                ┃ 永无BUG!   ┏┛
                ┗┓┓┏━┳┓┏┛
                  ┃┫┫  ┃┫┫
                  ┗┻┛  ┗┻┛
"""
#功能选择1.注册2.登入3.购物车4.充值5.支付
#商品列表需要是以下形式的列表['序号:商品名称:价格']
#许先创建一个login.txt文件
#可以往shop_list列表中添加商品
shop_list=['1:电脑:5000','2:手机:3000','3:衣服:1000','4:鞋子:500','5:零食:100','6:玩具:50','7:水果:50']
import os
def login():
    '''用户名和密码的注册'''
    username=input('请输入用户名>>>:').strip()
    userpwd=input('请输入密码>>>:').strip()
    with open(r'login.txt','a+t',encoding='utf-8')as f:
        for line in f:
            res=line.strip('\n').split(':')
            if res[0]==username:
                print('用户名已注册过')
                break
        else:
            f.write('%s:%s\n'%(username,userpwd))
            print('注册成功')
    f.close()
    return username
def enter():
    '''用户的登入认证'''
    username = input('请输入用户名>>>:').strip()
    userpwd = input('请输入密码>>>:').strip()
    with open(r'login.txt', 'r+', encoding='utf-8')as f:
        for line in f:
            res=line.strip('\n').split(':')
            if res[0]==username and res[1]==userpwd:
                print('登入成功')
                break
        else:
            print('用户名还没注册')
    f.close()
    return username

def shop():
    '''选择商品和数量,加入新列表中'''
    commodity_list=[]
    while True:
        print('0:退出')
        for commodity in shop_list:
            print(commodity)
        input_number = input('请选择商品号码>>>:').strip()
        if int(input_number) not in range(0, len(shop_list)+1):
            print('选择错误')
        ':
            break
        else:
            shop_count = input('请选择商品数量>>>:').strip()
            print()
            for commodity in shop_list:
                commodity_number,commodity_name,commodity_price=commodity.split(':')
                if input_number==commodity_number:
                    commodity_list.append('%s:数量:%s'%(commodity_name,shop_count))
            print(commodity_list)
    return commodity_list

def price(commodity_list):
    '''计算购物商品总价'''
    total_price=0
    for commodity in shop_list:
        for buy in commodity_list:
            commodity_number, commodity_name, commodity_price = commodity.split(':')
            buy_name,buy_none,buy_count=buy.split(':')
            if commodity_name==buy_name:
                total_price+=int(buy_count)*int(commodity_price)
    print(commodity_list)
    print('商品总价:%s'%total_price)
    return total_price

def recharge(username_enter):
    '''给账户充值'''
    if username_enter==False:
        print('你还没有登入')
    else:
        money=input('请输入你要充值的金额>>>:').strip()
        with open(r'login.txt','r',encoding='utf-8')as f_1,\
            open(r'.login.temp.txt','w',encoding='utf-8')as f_2:
            for line in f_1:
                res=line.strip('\n').split(':')
                if res[0]==username_enter:
                    f_2.write('%s:%s:%s\n'%(res[0],res[1],money))
                    print('充值成功,你充值的金额是%s' % money)
                else:
                    f_2.write('%s\n'%line.strip('\n'))
        os.remove('login.txt')
        os.rename('.login.temp.txt','login.txt')
        f_1.close()
        f_2.close()
        return money

def pay(total_price,username_enter):
    '''支付功能,把充值的钱减去选购商品总价,最后显示余额'''
    remaining_sum=0
    if username_enter==False:
        print('你还没有登入')
    else:
        with open(r'login.txt','r',encoding='utf-8')as f_1,\
            open(r'.login.temp.txt','w',encoding='utf-8')as f_2:
            for line in f_1:
                res=line.strip('\n').split(':')
                if res[0]==username_enter and len(res)<3:
                    print('你的账户还没充值')
                if res[0]==username_enter and len(res)==3:
                    remaining_sum=int(res[2])-int(total_price)#remaining_sum拿到余额
                    f_2.write('%s:%s:%s\n'%(res[0],res[1],remaining_sum))
                    print('付款成功,还剩余额:%s' % remaining_sum)
                else:
                    f_2.write('%s'%line)
        os.remove('login.txt')
        os.rename('.login.temp.txt', 'login.txt')
        f_1.close()
        f_2.close()
        return remaining_sum

username_enter=False
username_login=False
total_price=False
money=False
while True:
    print('''
    功能选择:
    0.退出
    1.注册
    2.登入
    3.购物
    4.充值
    5.支付
    ''')
    num=input('请输入序号>>>:').strip()
    ':break
    ':
        username_login=login()#拿到返回值:注册成功的用户名
    ':
        username_enter=enter()#拿到返回值:登入成功的用户名
    ':
        commodity_list=shop()#拿到返回值:选购商品列表
        total_price=price(commodity_list)#拿到返回值:选购商品的总价
    ':
        money=recharge(username_enter)#拿到返回值:拿到充值的金额
    ':
        pay(total_price,username_enter)
    else:
        print('序号选择错误')

python简单购物车改进版的更多相关文章

  1. Python 简单购物车

    product_list =[ ('huawei',3000), ('hongmiNote3',3000), ('sanxing',2600), ('ThinkPad870',15000), ('Ip ...

  2. python实现简单购物车系统(练习)

    #!Anaconda/anaconda/python #coding: utf-8 #列表练习,实现简单购物车系统 product_lists = [('iphone',5000), ('comput ...

  3. Python实例---简单购物车Demo

    简单购物车Demo # version: python3.2.5 # author: 'FTL1012' # time: 2017/12/7 09:16 product_list = ( ['Java ...

  4. 简单购物车程序(Python)

    #简单购物车程序:money_all=0tag=Trueshop_car=[]shop_info={'apple':10,'tesla':100000,'mac':3000,'lenovo':3000 ...

  5. 用Python实现简单购物车

    作业二:简单购物车# 实现打印商品详细信息,用户输入商品名和购买个数,则将商品名,价格,购买个数加入购物列表,# 如果输入为空或其他非法输入则要求用户重新输入 shopping_list = [] w ...

  6. python 简单搭建非阻塞式单进程,select模式,epoll模式服务

    由于经常被抓取文章内容,在此附上博客文章网址:,偶尔会更新某些出错的数据或文字,建议到我博客地址 :  --> 点击这里 可以看我的上篇文章 <python 简单搭建阻塞式单进程,多进程, ...

  7. python 简单搭建阻塞式单进程,多进程,多线程服务

    由于经常被抓取文章内容,在此附上博客文章网址:,偶尔会更新某些出错的数据或文字,建议到我博客地址 :  --> 点击这里 我们可以通过这样子的方式去理解apache的工作原理 1 单进程TCP服 ...

  8. Python简单爬虫入门三

    我们继续研究BeautifulSoup分类打印输出 Python简单爬虫入门一 Python简单爬虫入门二 前两部主要讲述我们如何用BeautifulSoup怎去抓取网页信息以及获取相应的图片标题等信 ...

  9. Python简单爬虫入门二

    接着上一次爬虫我们继续研究BeautifulSoup Python简单爬虫入门一 上一次我们爬虫我们已经成功的爬下了网页的源代码,那么这一次我们将继续来写怎么抓去具体想要的元素 首先回顾以下我们Bea ...

随机推荐

  1. shell中数组及其相关操作

    转载 https://blog.csdn.net/jerry_1126/article/details/52027539

  2. 21.PHP实现Word/Excel/PPT转换为PDF

    参考文档: https://www.cnblogs.com/woider/p/7003481.html http://blog.csdn.net/aoshilang2249/article/detai ...

  3. PreparedStement 用户登录!

    一.准备工作 在qy66数据库下,新建一个denglu表.添加 name password  . package cn.zhouzhou; import java.sql.Connection; im ...

  4. easyui combobox 在datagrid中动态加载数据

    场景:datagrid 中用编辑框修改数据,有一个列使用的combobox  在可编辑的时候需要动态绑定数据,这个数据是在根据其他条件可变的 思路:在每次开启编辑框的时候动态绑定数据, datagri ...

  5. PC平台的SIMD支持检测

    如果我们希望在用SIMD来提升程序处理的性能,首先需要做的就是检测程序所运行的平台是否支持相应的SIMD扩展.平台对SIMD扩展分为两部分的支持: CPU对SIMD扩展的支持.SIMD扩展是随着CPU ...

  6. python时间模块datetime

    datetime模块 datetime在python中比较常用,主要用来处理时间日期,使用前先倒入datetime模块.下面总结下本人想到的几个常用功能. 1.当前时间(日期.小时.字符串时....) ...

  7. linux-shell系列2-机器巡检

    #!/bin/bash#主机信息每日巡检NETWORK=`ip a|grep 2:|awk -F':' '{print $2}'` IPADDR=$(ifconfig $NETWORK|grep 'i ...

  8. [Codeforces235D]Graph Game——概率与期望+基环树+容斥

    题目链接: Codeforces235D 题目大意:给出一棵基环树,并给出如下点分治过程,求点数总遍历次数的期望. 点分治过程: 1.遍历当前联通块内所有点 2.随机选择联通块内一个点删除掉 3.对新 ...

  9. [WC2018]州区划分——FWT+DP+FST

    题目链接: [WC2018]州区划分 题目大意:给n个点的一个无向图,点有点权,要求将这n个点划分成若干个部分,每部分合法当且仅当这部分中所有点之间的边不能构成欧拉回路.对于一种划分方案,第i个部分的 ...

  10. android最最基础简单的保存xml代码

    y偶遇非常基础,我想直接上代码: MainActivity.java: package com.lgqchinese.xmlcreate; import android.support.v7.app. ...