implemented the untested choose functions

This commit is contained in:
Hellow2
2023-03-28 15:01:47 +02:00
parent bbb2f0831b
commit 28f56ac317
2 changed files with 38 additions and 1 deletions

View File

@@ -28,3 +28,6 @@ class Options:
raise ValueError("Index out of bounds")
return self._data[item]
def __len__(self) -> int:
return len(self._data)