Computer Science

Which function returns the number of elements in the tuple?

  1. len()
  2. max()
  3. min()
  4. count()

Python Tuples

3 Likes

Answer

len()

Reason — The len() function returns the number of elements in the tuple.

Answered By

1 Like


Related Questions