class CsvGame: def __init__(self, nsuid, title, discount_price_alert, discount_percentage_alert): self.nsuid = nsuid self.title = title self.discount_price_alert = discount_price_alert self.discount_percentage_alert = discount_percentage_alert def __str__(self): return f"{self.title}({self.nsuid})"