Skip to content

Instantly share code, notes, and snippets.

@stephengruppetta
Created April 15, 2023 22:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stephengruppetta/6f929099e90dfb19a64e4e9d1c342d9f to your computer and use it in GitHub Desktop.
Save stephengruppetta/6f929099e90dfb19a64e4e9d1c342d9f to your computer and use it in GitHub Desktop.
class SubstackArticle:
   def __init__(self, number_of_words):
       self.number_of_words = number_of_words
   def __mul__(self, other):
       if isinstance(other, int):
           return SubstackArticle(self.number_of_words * other)
   def __rmul__(self, other):
       print("__rmul__ called")
       return self.__mul__(other)
   def __repr__(self):
       return f"SubstackArticle({self.number_of_words})"
my_article = SubstackArticle(1000)
print(my_article * 3)
# SubstackArticle(3000)
print(3 * my_article)
# __rmul__ called
# SubstackArticle(3000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment