what is the output of this code? a=[1, 2] b=[2, 3] c=[3 ,4] d=[a, b, c] print(d)
Answers
Answered by
0
Answer:
The output will be the first index of the array d
That is : a
Output : a
Similar questions