Q(6) Which of the following is a valid function declaration : -
1 point
def func(a=1,b):
def func(a=1,b,c=2):
def func(a=1,b=2,c=3,d):
def func(a=1,b=1,c=2)
Answers
Answered by
0
Answer:
def func(a=1,b): is the answer
Similar questions