-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtable_spoons_class.py
52 lines (31 loc) · 1.15 KB
/
table_spoons_class.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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Wed Feb 17 19:18:28 2021
@author: robertblack
"""
from random import randint
import spoon_class as spn
class TableSpoons:
def __init__(self, numberOfSpoons = 0):
self.__m_spoons = self.__addSpoons(numberOfSpoons)
def __addSpoons(self, numberOfSpoons):
spoons = []
for i in range(numberOfSpoons):
spoon = spn.Spoon()
spoons.append(spoon)
return spoons
def getNumberOfSpoonsLeft(self):
return len(self.__m_spoons)
def takeSpoon(self):
spoon = None
if len(self.__m_spoons) > 0:
randNum = randint(0, len(self.__m_spoons) -1)
spoon = self.__m_spoons[randNum]
del self.__m_spoons[randNum]
return spoon
def addSpoon(self, spoon):
randNum = randint(0, len(self.__m_spoons) - 1)
self.__m_spoons.insert(randNum, spoon)
def __str__(self):
return str(self.__m_numSpoons) + " sppons on the table."