Created
November 23, 2023 18:07
-
-
Save elyssonmr/6686ece1f3d983ddb342f133063e1851 to your computer and use it in GitHub Desktop.
This file contains 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 X: | |
def __eq__(self, other): | |
return True | |
x = X() | |
if x == 1 and x == 2 and x == 3: | |
print('Absurdo') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment