initial commit

This commit is contained in:
Jake Pullen
2024-05-12 20:23:34 +01:00
commit 5be036817b
6 changed files with 219 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
class card:
def __init__(self, suit, value):
self.suit = suit
self.value = value
def __str__(self):
return f"{self.suit} of {self.value}"