本文实例讲述了python通过apply使用元祖和列表调用函数的方法。分享给大家供大家参考。具体实现方法如下:
def my_fuc(a, b):
print a, b
atuple=(30,10)
alist= [‘hello’,’world!’]
apply(my_fuc,atuple)
apply(my_fuc,alist)
运行结果如下:
30 10
hello world!
希望本文所述对大家的python程序设计有所帮助。
A programmer’s note boke for work and life
本文实例讲述了python通过apply使用元祖和列表调用函数的方法。分享给大家供大家参考。具体实现方法如下:
def my_fuc(a, b):
print a, b
atuple=(30,10)
alist= [‘hello’,’world!’]
apply(my_fuc,atuple)
apply(my_fuc,alist)
运行结果如下:
30 10
hello world!
希望本文所述对大家的python程序设计有所帮助。