की सही फ़ंक्शन घोषणा चुनें fun1() ताकि हम निम्नलिखित दो फ़ंक्शन कॉल सफलतापूर्वक निष्पादित कर सकें।
Choose the correct function declaration of fun1() so that we can execute the following two function calls successfully.
A
def fun1(**kwargs)
B
def fun1(args*)
C
No, it is not possible in Python
D
def fun1(*data)
Explanation
Correct Answer: D) def fun1(*data)