L=[4,2,[9,1],(4,5)] >>>len(L)
Answers
Answered by
1
Answer:
The output will be 4.
Explanation:
len() returns the length of the array argument.
For L it has 4 elements tuple and embedded lisy are also counter as 1 (each) element.
Similar questions