码迷,mamicode.com
首页 > 其他好文 > 详细

<每日一题>题目2:编写装饰器,为多个函数加上认证功能(用户账号和密码来源于文件)

时间:2018-09-20 13:49:08      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:用户   code   turn   文件   bsp   input   每日一题   div   col   

  这里做个最简单的账号密码验证,主要为了实现装饰器同时对多个函数起作用

 1 FLAG = False    #加一个变量防止多次登录验证
 2 def wrapper(f):
 3     def inner(*args,**kwargs):
 4         ‘‘‘登录程序‘‘‘
 5         global FLAG #将FLAG变量设置成全局变量
 6         if FLAG:
 7             ret = f(*args, **kwargs)
 8             return ret
 9         else:
10             username = input(username:)
11             password = input(password:)
12             if username == 123 and password == 345:
13                 FLAG = True
14                 ret = f(*args,**kwargs)
15                 return ret
16             else:
17                 print(登录失败)
18     return inner
19 
20 @wrapper
21 def func_1():
22     print(func1 is running!)
23 
24 @wrapper
25 def func_2():
26     print(func2 is running!)
27 
28 func_1()
29 func_2()

  运行结果:

1 username:123
2 password:345
3 func1 is running!
4 func2 is running!

 

<每日一题>题目2:编写装饰器,为多个函数加上认证功能(用户账号和密码来源于文件)

标签:用户   code   turn   文件   bsp   input   每日一题   div   col   

原文地址:https://www.cnblogs.com/shuimohei/p/9680206.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!