Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class mojaKlasa:
- def __init__(self):
- print("utworzenie nowej instancji klasy")
- def __call__(self, jeden, dwa):
- print("odwolanie do metody __call__")
- print(jeden+dwa)
- jeden = mojaKlasa()
- jeden(1,15)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement