-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocumenting code.py
73 lines (57 loc) · 1.83 KB
/
documenting code.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import random
class Card:
"""
The Card class represents a single playing card and is initialised by passing a suit and number.
"""
def __init__(self, suit, number):
self._suit = suit
self._number = number
def __repr__(self):
return self._number + " of " + self._suit
@property
def suit(self):
'''Gets or sets the suit of the cards.'''
return self._suit
@suit.setter
def suit(self, suit):
if suit in ["hearts", "clubs", "diamonds", "spades"]:
self._suit = suit
else:
print("That's not a suit!")
@property
def number(self):
return self._number
@number.setter
def number(self, number):
valid = [str(n) for n in range(2,11)] + ["J", "Q", "K", "A"]
if number in valid:
self._number = number
else:
print("That's not a valid number")
class Deck:
"""
The Deck class represents a deck of playing cards in order.
"""
def __init__(self):
self._cards = []
self.populate()
def populate(self):
suits = ["hearts", "clubs", "diamonds", "spades"]
numbers = [str(n) for n in range(2,11)] + ["J", "Q", "K", "A"]
self._cards = [ Card(s, n) for s in suits for n in numbers ]
def shuffle(self):
random.shuffle(self._cards)
'''
The shuffle method shuffles the cards.
'''
def deal(self, no_of_cards):
dealt_cards = []
for i in range(no_of_cards):
dealt_card = self._cards.pop(0)
dealt_cards.append(dealt_card)
return dealt_cards
def __repr__(self):
cards_in_deck = len(self._cards)
return "Deck of " + str(cards_in_deck) + " cards"
deck = Deck()
print(deck)