示例#1
0
    def showdown(self):
        public = self.flop + [self.turn, self.river]
        list1 = self.player1.cards + public
        list2 = self.player2.cards + public
        judge = Judge(list1, list2)
        judge.show()
        winner = judge.compare()

        return winner