Home »
Python »
Python Tuples MCQs
Which python function will get you the size of the python tuple?
27. Which python function will get you the size of the python tuple?
- size()
- len()
- lenln()
- list_len()
Answer: B) len()
Explanation:
The len() function will give you the total number of elements present in the tuple.