Respuesta :

Answer:

The answer woud be COUNT

Explanation:

because in a python program it counts the number of a specified value to see how many times that value occcurs.

>>> tupleB = (5, 7, 5, 10, 2, 7)

>>> tupleB.count(7)

Run these lines of code in python.