##需求:在运行一个函数之前,先验证身份。
import time #定义一个想要运行的函数 def home(name): time.sleep(0.8) print('welcome to %s home page'%name) #定义一个身份认证 username=input('login: ').strip() password=input('password: ').strip() if username == 'zhifeng' and password == 'redhat': print('login success') home('zhifeng') #身份通过,运行home()函数 else: print('error')
最原始的代码流程,也是最low的写法,但是效果达到了:
到此功能实现。
为啥还要写后续的呢?
=====================================================================================================