fork(1) download
  1. class Greeting:
  2. def __get__(self, instance, owner):
  3. return "{} Mubarak".format(instance.which)
  4.  
  5.  
  6. class Eid:
  7. greeting = Greeting()
  8.  
  9. def __init__(self, which_eid):
  10. self.which = which_eid
  11.  
  12.  
  13. eid = Eid("Eid-Ul-Fitr")
  14. print(eid.greeting)
  15.  
Success #stdin #stdout 0.02s 9984KB
stdin
Standard input is empty
stdout
Eid-Ul-Fitr Mubarak