1 2 3 4 5 6
def count_X(tup, x): count = 0 for ele in tup: if (ele == x): count = count + 1 return count