So I'm working on a basic word game where you're dealt a "hand" (a dictionary object) of letters that you use to create words and get points.
This "hand" is used in the parameters of a number of functions: calculating a player's score, updating the number of letters in a hand after a player has used one or more letters, displaying the hand, checking the validity of the player's word, etc.
From all that I've read, I know that I should avoid global variables if I can (though I'm still not totally sure why).
So what other general approach could I use for a number of functions that use "hand" as a parameter?