Advertisement
andreymal

https://ru.stackoverflow.com/questions/1423616

Jun 24th, 2022
1,104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.22 KB | None | 0 0
  1. class Difference:
  2.     def __eq__(self, other):
  3.         return other is False
  4.  
  5.     def __call__(self):
  6.         print("Я СРАБОТАЛ!!!")
  7.  
  8.  
  9. difference = Difference()
  10.  
  11.  
  12. while difference == False:
  13.     difference()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement