Mar-22-2022, 07:03 PM
I'm trying to get a basic understanding of dunder methods. Using the example below. How do I return the msg?
I'm thinking it just doesn't automatically pick the correct method then return the message.
Any help understanding would be great.
I'm thinking it just doesn't automatically pick the correct method then return the message.
Any help understanding would be great.
class Match: def __init__(self, guess, number): self.number = number self.guess = guess self.msg = '' def __lt__(self): if self.guess < self.number: self.msg = f'{self.guess} is too low' def __gt__(self): if self.guess > self.number: self.msg = f'{self.guess} is too high' def __eq__(self): if self.guess == self.number: self.msg = f'Great! You match the number with {self.guess}.' def __str__(self): return self.msg print(Match(5, 3))
I welcome all feedback.
The only dumb question, is one that doesn't get asked.
My Github
How to post code using bbtags
Download my project scripts
The only dumb question, is one that doesn't get asked.
My Github
How to post code using bbtags
Download my project scripts