Python练习-装饰器版-为什么我的用户总被锁定

参考代码如下:

1.用户登录程序流程控制代码:

 1 # 编辑者:闫龙
 2 if __name__ == ‘__main__‘:
 3     import UserLoginFuncation
 4 LoclCount=[];
 5 while True:
 6     UserName = input("用户名:>>")
 7     if(UserLoginFuncation.CheckUserLock(UserName)):
 8         print("用户",UserName,"已被锁定")
 9         continue
10     PassWd = input("密  码:>>")
11     if(UserLoginFuncation.UserInfo(UserName,PassWd)):
12         print("欢迎",UserName,"登陆")
13         break
14     else:
15         LoclCount.append(UserName);
16         print("用户名或密码错误,您还有",3-LoclCount.count(UserName),"次尝试机会")
17     if(LoclCount.count(UserName) == 3):
18         UserLoginFuncation.LockUser(UserName)
19         print("对不起,尝试次数过多",UserName,"用户已被锁定")

用户登录程序流程控制代码(UserLogin.py)

2.用户登录程序调用函数(加入装饰器):

 1 # 编辑者:闫龙
 2 import UserLoginDeco
 3 import os
 4 @UserLoginDeco.Jude(2)
 5 def CheckUserLock(UserName):
 6     if(os.path.exists("LockUser")):
 7         with open("LockUser","r",encoding="utf8") as ReadLock:
 8             p = ReadLock.readline().split(",")
 9             if(p.count(UserName) != 0):
10                 return True
11     else:
12         return False
13
14 @UserLoginDeco.Jude(3)
15 def LockUser(UserName):
16     if(os.path.exists("LockUser")):
17         LockFile = open("LockUser", "a", encoding="utf8")
18         LockFile.write(UserName+",")
19         LockFile.close()
20     else:
21         LockFile = open("LockUser", "w", encoding="utf8")
22         LockFile.write(UserName+",")
23         LockFile.close()
24
25 @UserLoginDeco.Jude(1)
26 def UserInfo(UserName,PassWd):
27     with open("UserInfo",mode="r",encoding="utf8") as userinfo:
28         p =  userinfo.readlines()
29         for i in p:
30             i= i.strip().split(":")
31             if(i[0] == UserName and i[1] == PassWd):
32                 return True
33             else:
34                 continue
35         return False

用户登录程序调用函数(加入装饰器)UserLoginFuncation.py

3.用户登录程序装饰器代码:

 1 # 编辑者:闫龙
 2 import time
 3 def Jude(InputType):
 4     def ViewUser(UserLoginFunc):
 5         def PrintUser(*args):
 6             if(InputType == 1):
 7                 while True:
 8                     print("您输入的用户名是",args[0],"密码是",args[1])
 9                     choice = input("请问是否继续登陆(y/n)")
10                     if (choice.lower() == "y"):
11                         res = UserLoginFunc(args[0],args[1])
12                         return res
13                     elif(choice.lower() == "n"):
14                         break;
15                     else:
16                         print("您的选择有误")
17                         continue
18             if(InputType == 2):
19                 print("正在比对用户",args[0],"的信息......")
20                 time.sleep(2)
21                 res = UserLoginFunc(args[0])
22                 return res
23             if(InputType == 3):
24                 print("正在锁定",args[0],"用户")
25                 time.sleep(2)
26                 res = UserLoginFunc(args[0])
27                 return res
28         return PrintUser
29     return ViewUser

用户登录程序装饰器代码(UserLoginDeco.py)

4.用户登录文件(UserInfo):

1 egon:123
2 alex:321
3 long:666

用户登录文件(UserInfo)

时间: 2024-11-23 11:05:54

Python练习-装饰器版-为什么我的用户总被锁定的相关文章

Python中装饰器(转)

本文由 伯乐在线 - 7even 翻译,艾凌风 校稿.未经许可,禁止转载!英文出处:Simeon Franklin.欢迎加入翻译组. 好吧,我标题党了.作为 Python 教师,我发现理解装饰器是学生们从接触后就一直纠结的问题.那是因为装饰器确实难以理解!想弄明白装饰器,需要理解一些函数式编程概念,并且要对Python中函数定义和函数调用语法中的特性有所了解.使用装饰器非常简单(见步骤10),但是写装饰器却很复杂. 虽然我没法让装饰器变得简单,但也许通过将问题进行一步步的讲解,可以帮助你更容易理

尝试自己的Perl语言的包 TCP协议的再包装起到类似python语言装饰器的效果

#!/usr/bin/perl # Filename: BuildSocketTCP.pm # #   Copyright 2012 Axxeo GmbH #   Licensed under the Apache License, Version 2.0 (the "License"); #   you may not use this file except in compliance with the License. #   You may obtain a copy of t

尝试自己的Perl语言的包 UDP协议的再包装起到类似python语言装饰器的效果

#!/usr/bin/perl # Filename: BuildSocketUDP.pm # #   Copyright 2012 Axxeo GmbH #   Licensed under the Apache License, Version 2.0 (the "License"); #   you may not use this file except in compliance with the License. #   You may obtain a copy of t

python函数装饰器

学习装饰器前提需要了解高阶函数,函数嵌套,函数闭包 python函数装饰器,顾名思义就是装饰函数,为函数添加新功能的的一种方式. 为什么要使用装饰器呢? 因为函数在运行时,如果不使用装饰器对函数进行功能添加,需要修改函数源代码,这样修改无疑会增加程序的冗余和复杂性,也不便于程序员对其进行修改.使用装饰器,可以在不改变函数源代码和调用方式的前提下,使用语法糖@装饰器,对函数功能进行添加. 装饰器本质上就是一个函数. 我们使用一个简单的例子来实现: import time #这是一个装饰器函数名为t

Python之装饰器、迭代器和生成器

在学习python的时候,三大“名器”对没有其他语言编程经验的人来说,应该算是一个小难点,本次博客就博主自己对装饰器.迭代器和生成器理解进行解释. 为什么要使用装饰器 什么是装饰器?“装饰”从字面意思来谁就是对特定的建筑物内按照一定的思路和风格进行美化的一种行为,所谓“器”就是工具,对于python来说装饰器就是能够在不修改原始的代码情况下给其添加新的功能,比如一款软件上线之后,我们需要在不修改源代码和不修改被调用的方式的情况下还能为期添加新的功能,在python种就可以用装饰器来实现,同样在写

python之装饰器 实例

=====================================写法1========================== import time def timer(func):     def deco():         start_time = time.time()         func()         stop_time = time.time()         print('the func run time is %s' %(stop_time - star

【转】详解Python的装饰器

原文链接:http://python.jobbole.com/86717/ Python中的装饰器是你进入Python大门的一道坎,不管你跨不跨过去它都在那里. 为什么需要装饰器 我们假设你的程序实现了say_hello()和say_goodbye()两个函数. def say_hello(): print "hello!" def say_goodbye(): print "hello!" # bug here if __name__ == '__main__':

如何用python的装饰器定义一个像C++一样的强类型函数

Python作为一个动态的脚本语言,其函数在定义时是不需要指出参数的类型,也不需要指出函数是否有返回值.本文将介绍如何使用python的装饰器来定义一个像C++那样的强类型函数.接下去,先介绍python3中关于函数的定义. 0. python3中的函数定义 举个例子来说吧,比如如下的函数定义: 1 def fun(a:int, b=1, *c, d, e=2, **f) -> str: 2 pass 这里主要是说几点与python2中不同的点. 1)分号后面表示参数的annotation,这个

Python 函数装饰器入门

原文链接: --> A guide to Python's function decorators Python功能强劲,语法表现力强,尤其装饰器深深的吸引着我.在设计模式中,装饰器可以在不使用子类的情况下,动态的改变函数,方法以及类的功能.这个功能非常有用,特别在你想扩展函数的功能同时又不想改变原有的函数.的确,我们任意的实现装饰器设计模式,但是,python通过提供简单的语法和特性让装饰器的实现变的如此简单. 在本文中,我将用一组例子来深入浅入python 函数装饰器的功能,所有的例子都是在