Python 用户登录验证的小例子

yipeiwu_com6年前Python基础

复制代码 代码如下:

#!/usr/bin/python
#coding=gbk

class User:
    def __init__(self,username,password,age,sex):
        self.username=username
        self.password=password
        self.age=age
        self.sex=sex

    def tell(self):
        print 'UserContext:Name:%s,Pass:%s,Age:%s,Sex:%s' % (self.username,self.password,self.age,self.sex)

class Member(User):
    def __init__(self,username,password,age,sex,user_id):
        User.__init__(self,username,password,age,sex)
        self.user_id=user_id
        print '(AdminUser:%s)' % self.username

    def tell(self):
        User.tell(self)
        if self.user_id==1:
            print 'This is Administrator!'
        else:
            print 'This is User'

t=Member('admin','123456','18','男',1)
s=Member('jack','2222','19','男','0')

user_member=[t,s]
for m_user in user_member:
    m_user.tell()

相关文章

复习Python中的字符串知识点

字符串 在 Python 中创建字符串对象非常容易。只要将所需的文本放入一对引号中,就完成了一个新字符串的创建(参见清单 1)。如果稍加思考的话,您可能会感到有些困惑。毕竟,有两类可以使...

Python实现随机创建电话号码的方法示例

Python实现随机创建电话号码的方法示例

本文实例讲述了Python实现随机创建电话号码的方法。分享给大家供大家参考,具体如下: 当需要随机的生成一些电话号码的时候,可以使用以下脚本,简单实用,第一个列表中 list列表中的数字...

简单了解Python3里的一些新特性

概述 到2020年,Python2的官方维护期就要结束了,越来越多的Python项目从Python2切换到了Python3。其实在实际工作中,很多伙伴都还是在用Python2的思维写Py...

Django的数据模型访问多对多键值的方法

这里先来借用一个书本(book)的数据模型作为例子: from django.db import models class Publisher(models.Model): n...

Python使用pyshp库读取shapefile信息的方法

通过pyshp库,可以读写Shapefile文件,查询相关信息,github地址为 https://github.com/GeospatialPython/pyshp import...