Obtenez la longueur d'un tuple en python

numbers = (1, 2, 3, 4, 5)
 
length = len(numbers)
 
print('Length of the tuple is: ', length)
Glorious Gnat