one common operation in blackjack is to count up the total value of a hand (adding up the number cards and treating face cards as 10). it might be tempting to use the existing sum() function to do that for us, but unfortunately, there is something about the blackjack game that makes that not quite suitable. what about the rules of blackjack makes the value of a hand more complicated than a simple sum of values?