trippy_vol_III

def triple_trippy

PrisNOK420,00 inkl. mva.
Lagerstatus:
Utsolgt

Produktinfo

class TShirt:

def __init__(self):

self.designers = ["ikke_stresse", "DEI"]
self.color = "white"
self.fit = "boxy oversized"
self.material = "100% French Terry cotton"
self.weight = "425gsm"
self.features = ["knitted structure"]
self.mushrooms = "illegal"

def __repr__(self):

return f"<TShirt by {', '.join(self.designers)} | {self.color}, {self.fit}>"

# instantiate
tee = TShirt()
print(tee)