Instruction
Perfect! Now we'll need a function to check the relationship between a given club and a given player.
Exercise
Create a function named check_player_club_relation(player, club). The function should compare the club string variable with a list of the player's current and former clubs. Based on this comparison, the function should return one of these three strings:
>>> The player is now playing for this club.>>> The player used to play for this club.>>> The player has never played for this club.
Stuck? Here's a hint!
To check if a club is among the player's former clubs, use the in operator.



