Created
April 15, 2023 22:08
-
-
Save stephengruppetta/3c91d316e201fc7b608b68d928366c06 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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