Fork me on GitHub
  2020年3月20日
摘要: # 1、函数对象优化多分支if的代码练熟'''func_dic={ '0':'drop_out(退出)', '1':'login(登录)', '2':'transfer(转账)', '3':'check_banlance(查询余额)', '4':'withdraw(提现)', '5':'regist 阅读全文
posted @ 2020-03-20 17:53 OBOS 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 函数对象 # 精髓:可以把函数当成变量去用# func=内存地址# def func():# print('from func')# 1、可以赋值# f=func# print(f,func)# f()# 2、可以当做函数当做参数传给另外一个函数# def foo(x): # x = func的内存 阅读全文
posted @ 2020-03-20 15:35 OBOS 阅读(164) 评论(0) 推荐(0) 编辑