Hi there
This is a teaching example and I don't understand why I need the 'self' keyword here. Can somebody explain this?
time_and_date.py
- has the classes Clock & Calendar
wanduhr_muloe.py
- "Combines" Clock and Calendar from above for a wall clock
My question: wanduhr_muloe.py Line 27:
return f'{Calendar.__str__(self)} - {Clock.__str__(self)}'
Why do I need these 2 selfs? In my mind it should more be something like super(), as they come from the class Clock & Calendar respectively.
This is a teaching example and I don't understand why I need the 'self' keyword here. Can somebody explain this?
time_and_date.py
- has the classes Clock & Calendar
wanduhr_muloe.py
- "Combines" Clock and Calendar from above for a wall clock
My question: wanduhr_muloe.py Line 27:
return f'{Calendar.__str__(self)} - {Clock.__str__(self)}'
Why do I need these 2 selfs? In my mind it should more be something like super(), as they come from the class Clock & Calendar respectively.

Attached Files