码迷,mamicode.com
首页 > 其他好文 > 详细

用字典储存函数的引用

时间:2018-03-14 12:44:32      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:print   ati   min   post   log   return   服务   def   web   

# 最近学习mini_web服务器 发现用字典储存函数的引用非常方便

 

# 字典可以储存一个函数的返回值
def index():
  return "content"


dic = {"index": index()}

print(dic["index"]) # 返回了函数的返回值 “content”

 

 

# 后续调用

file_name = "index"

def application():

  return dict["index"]     # 返回了index函数的返回值“content”

  

 

用字典储存函数的引用

标签:print   ati   min   post   log   return   服务   def   web   

原文地址:https://www.cnblogs.com/levy-y/p/8566240.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!