python_装饰器之页面登陆验证

2019-07-24 09:07:03来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

import time


def auth(func):
def wrapper(*args, **kwargs):
username = input('username:').strip()
password = input('password:').strip()
if username == 'admin' and password == '123':
func()
else:
exit()

return wrapper

@auth
def index():
print('index')

@auth
def home():
print('home')

@auth
def bbs():
print('bbs')


# 方法调用
index()
home()
bbs()

原文链接:https://www.cnblogs.com/victorstudy/p/11090397.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:python生成器

下一篇:Pycharm调Anaconda安装的库,试坑:"No module named numpy