Beispiel #1
0
 def test_shuffle(self):
     deck = Deck()
     print('Before shuffle, the deck is')
     deck._print()
     deck.shuffle()
     print('After shuffle, the deck is')
     deck._print()