Introducing Radical.sh

Forget Code launches a powerful code generator for building API's

Length of a tuple in Python

In python, Len() function can be used to get the length i.e number of elements in tuple.

Syntax
len([tuple])


Example : Get the number of values inside a tuple
tup = (100,200,300)
len(tup)

Output
3