###装饰器模拟登陆
##需求,就是比如之前的网站没有没有登陆页面,现在我需要加上一个登陆的需求
##这一步只是写在本地的用户信息,用来测试的
user,password = "caicai","13421731046"
##装饰里面的功能(3)
def auth(func):
##然后定义一个内嵌函数(3-1)
def wrapper(*args,**kwargs):##传入参数,以备不时之需
##现在可以开始判断用户的输入了
userInput = input("user:").strip()
passwordInput = input("password:").strip()
if userInput == user and passwordInput == password:
print("