Home »
Python »
Python Tuples MCQs
What will be the size of the following tuple?
29. What will be the size of the following tuple?
t1=(["hello",1,2,3], ["Hi"," everyone"," How"," Are"," You"])
- 9
- 3
- 5
- 2
Answer: D) 2
Explanation:
The size of the tuple would be 2, as the tuple included 2 lists therefore the total size would be 2.