Can u explain this

Before discussing this->
Lets understand the working of args

args are used to accept any number of parameters to a function.

so you can see in given question there are number of values passed inside a function as in fun1(25,75,55) here 3 values are passed and func1(10,20) here 2 values are passed so in such case we can declare a function like def func1(*data).

2 Likes