(相關(guān)資料圖)
1、def f1(x): return x**5def f2(x): return (x+4)**5def f3(x): return 1/(1+x**2)list=[f1,f2,f3]def func(a=list[1]): sum=0 for i in range(5): sum=sum+a(i) return sumprint func(list[1]) #這個(gè)地方傳入列表中的第幾個(gè)函數(shù)。
本文分享完畢,希望對(duì)大家有所幫助。
關(guān)鍵詞: