Run
my_tuple = ('apple', 'fig', 'apple', 'cherry') count = my_tuple.count('apple') print(f"Count : {count}")
Output