What is the output of the following code?
def test func(+a) :
print (a [0])
test func(1,2,3,4)
test func ([1,2,3,4])
test func (1)
a) 1[1] 1
b) 1 1 1
c)1 [1, 2, 3, 4] 1
d) The code generates an error
Answers
Answered by
0
Answer:
l is out put k means f you can see
Similar questions