1# function with large number of arguments 2 3def fun(a, b, c, d, e, f, g): 4 return a + b + c * d + e * f * g 5 6print(fun(1, 2, 3, 4, 5, 6, 7)) 7