MCPcopy Create free account
hub / github.com/Mrinank-Bhowmick/python-beginner-projects / Card

Class Card

projects/BlackJack/black_jack.py:40–47  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

38
39
40class Card:
41 def __init__(self, suit, rank):
42 self.suit = suit
43 self.rank = rank
44 self.value = values[rank]
45
46 def __str__(self):
47 return self.rank + " of " + self.suit
48
49
50class Deck:

Callers 1

__init__Method · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected