Python 由字符串函数名得到对应的函数(实例讲解)
把函数作为参数的用法比较直观:
def func(a, b): return a + b def test(f, a, b): print f(a, b) test(func, 3, 5)
但有些情况下,‘要传递哪个函数'这个问题事先还不确定,例如函数名与某变量有关。
可以利用 func = globals().get(func_name) 来得到函数:
def func_year(s): print 'func_year:', s def func_month(s): print 'func_month:', s strs = ['year', 'month'] for s in strs: globals().get('func_%s' % s)(s) """ 输出: func_year: year func_month: month """
相关推荐
夜斗不是神 2020-11-17
huavhuahua 2020-11-20
Yasin 2020-11-16
xiaoseyihe 2020-11-16
千锋 2020-11-15
diyanpython 2020-11-12
chunjiekid 2020-11-10
wordmhg 2020-11-06
世事一场大梦 2020-11-17
xiaoseyihe 2020-11-16
Morelia 2020-11-03
CloudXli 2020-11-03
文山羊 2020-10-31
comtop0 2020-10-31
pythonxuexi 2020-10-30
三石 2020-10-29
chaochao 2020-10-27
PythonMaker 2020-10-27