Skip to content

Instantly share code, notes, and snippets.

@stephengruppetta
Created April 15, 2023 22:08
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/3c91d316e201fc7b608b68d928366c06 to your computer and use it in GitHub Desktop.
Save stephengruppetta/3c91d316e201fc7b608b68d928366c06 to your computer and use it in GitHub Desktop.
class SubstackArticle:
   def __init__(self, number_of_words):
       self.number_of_words = number_of_words
       
my_article = SubstackArticle(1000)
print(my_article * 3)
# TypeError: unsupported operand type(s) for *: 'SubstackArticle' and 'int'
print(3 * my_article)
# TypeError: unsupported operand type(s) for *: 'int' and 'SubstackArticle'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment