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