Write a function evaluate_sport(points, sport) that receives an integer points earned by a player and a string sport naming the sport. The function should return a tuple of three booleans:
points > 5sport == "soccer""ball" in sport
For example:
evaluate_sport(10, "soccer") # (True, True, False)
evaluate_sport(3, "basketball") # (False, False, True)