5-8 函数调用函数
Posted hushaoyan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了5-8 函数调用函数相关的知识,希望对你有一定的参考价值。
1、封装一个处理字符从的函数,登录函数调用
1 def get_user(): 2 s = ‘abc,123‘ # 字符串 3 username,password = s.split(‘,‘) # 使用,对字符串进行分割,定义两个变量来接收 4 return username,password # 返回 这两个变量的值 5 6 7 def login(): 8 for i in range(3): 9 username, password = get_user() # 用户名和密码从函数中取 10 user = input(‘username:‘) # 输入用户名 11 pwd = input(‘password:‘) # 输入密码 12 if username==user and password==pwd: # 如果输入的用户名和用户密码一致 13 print(‘登录成功‘) 14 return # 提示‘登录成功‘,退出循环 15 else: # 否则,提示‘账号/密码错误‘ 16 print(‘账号/密码错错误!‘) 17 18 login()
以上是关于5-8 函数调用函数的主要内容,如果未能解决你的问题,请参考以下文章
如何将数据从回收器适配器发送到片段 |如何从 recyclerview 适配器调用片段函数
如何让片段中的多个视图调用片段类中声明的相同 onClick 函数?