New to python and this might be a silly question, but how does one properly implement the repr method?
I wrote a quick little program to simulate a game of card
You should return a string type, for example in Deck:
def __repr__(self): ... return 'Deck : '+str(self._deck)