69.py 1 2 3 4items = tuple(input("Enter Tuple Values : ").split()) target = input("Enter Item To Count : ") print(f"Count : {items.count(target)}")