Files
mau/card.py
T
2024-05-12 20:23:34 +01:00

9 lines
176 B
Python

class card:
def __init__(self, suit, value):
self.suit = suit
self.value = value
def __str__(self):
return f"{self.suit} of {self.value}"