Computer Science, asked by pinku708, 5 months ago

What is the length of the tuple shown below: T = ( ( ( ( ‘a’, 1 ), ’b’ , ’c’ ), ’d’ , 2 ) , ’e’ , 3 )

Answers

Answered by SASHANKSAHIL
83

Answer:

3

Explanation:

Because for python ((('a',1),'b','c'),'d',2) is one term, 'e' is one term and 3 is one term. So if we add the term there will be total of three term. So the leng is 3 for this tuple. If it's given in form of list, still the answer will be same i.e., 3

Hope you may get it

Mark as brainliests too

And, Thank You...

Similar questions