Apr-23-2025, 07:09 PM
i mean like this
class Food: def __init__(self, healthy=bool, type=str): self.healthy = healthy self.type = type def get_var(self): # code that will result in apple apple = Food(True, 'fruit')